forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceClientBaseTester.cs
More file actions
36 lines (31 loc) · 987 Bytes
/
ServiceClientBaseTester.cs
File metadata and controls
36 lines (31 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ServiceStack.ServiceClient.Web;
namespace ServiceStack.Common.Tests.ServiceClient.Web
{
public class ServiceClientBaseTester : ServiceClientBase
{
public override string ContentType { get { return String.Format("application/{0}", Format); } }
public override void SerializeToStream(ServiceHost.IRequestContext requestContext, object request, System.IO.Stream stream)
{
throw new NotImplementedException();
}
public override T DeserializeFromStream<T>(System.IO.Stream stream)
{
throw new NotImplementedException();
}
public override ServiceHost.StreamDeserializerDelegate StreamDeserializer
{
get
{
return null;
}
}
public override string Format
{
get { return "TestFormat"; }
}
}
}