3 implementations of IClientMessageFormatter
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageOperationFormatter.cs (1)
10
internal sealed class MessageOperationFormatter :
IClientMessageFormatter
, IDispatchMessageFormatter
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
19
internal abstract class OperationFormatter :
IClientMessageFormatter
, IDispatchMessageFormatter
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\PrimitiveOperationFormatter.cs (1)
14
internal class PrimitiveOperationFormatter :
IClientMessageFormatter
, IDispatchMessageFormatter
6 references to IClientMessageFormatter
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DataContractSerializerOperationBehavior.cs (1)
163
proxy.Formatter = (
IClientMessageFormatter
)GetFormatter(description, out formatRequest, out formatReply, true);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
160
proxy.Formatter = (
IClientMessageFormatter
)CreateFormatter();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ClientOperation.cs (3)
35
private
IClientMessageFormatter
_formatter;
122
public
IClientMessageFormatter
Formatter
164
internal
IClientMessageFormatter
InternalFormatter
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (1)
16
private readonly
IClientMessageFormatter
_formatter;