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