1 parent f2a1383 commit 166f016Copy full SHA for 166f016
2 files changed
src/ServiceStack.ProtoBuf/ProtoBufServiceClient.cs
@@ -8,10 +8,7 @@ namespace ServiceStack.ProtoBuf
8
{
9
public class ProtoBufServiceClient : ServiceClientBase
10
11
- public override string Format
12
- {
13
- get { return "x-protobuf"; }
14
- }
+ public override string Format => "x-protobuf";
15
16
public ProtoBufServiceClient(string baseUri)
17
src/ServiceStack.Wire/WireServiceClient.cs
@@ -6,7 +6,7 @@ namespace ServiceStack.Wire
6
7
public class WireServiceClient : ServiceClientBase
- public override string Format => MimeTypes.Wire;
+ public override string Format => "x-wire";
public WireServiceClient(string baseUri)
0 commit comments