2 types derived from SingleBodyParameterMessageFormatter
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\SingleBodyParameterDataContractMessageFormatter.cs (1)
18
class SingleBodyParameterDataContractMessageFormatter :
SingleBodyParameterMessageFormatter
System\ServiceModel\Dispatcher\SingleBodyParameterXmlSerializerMessageFormatter.cs (1)
17
class SingleBodyParameterXmlSerializerMessageFormatter :
SingleBodyParameterMessageFormatter
9 references to SingleBodyParameterMessageFormatter
System.ServiceModel.Web (9)
System\ServiceModel\Description\WebHttpBehavior.cs (5)
578
return
SingleBodyParameterMessageFormatter
.CreateXmlAndJsonClientFormatter(operationDescription, parameterType, false, this.xmlSerializerManager);
629
formatters.Add(WebMessageFormat.Xml,
SingleBodyParameterMessageFormatter
.CreateDispatchFormatter(operationDescription, parameterType, false, false, this.xmlSerializerManager, null));
632
formatters.Add(WebMessageFormat.Json,
SingleBodyParameterMessageFormatter
.CreateDispatchFormatter(operationDescription, parameterType, false, true, this.xmlSerializerManager, this.JavascriptCallbackParameterName));
692
baseFormatter =
SingleBodyParameterMessageFormatter
.CreateClientFormatter(operationDescription, parameterType, true, useJson, this.xmlSerializerManager);
766
result =
SingleBodyParameterMessageFormatter
.CreateXmlAndJsonDispatchFormatter(operationDescription, parameterType, true, this.xmlSerializerManager, this.JavascriptCallbackParameterName);
System\ServiceModel\Dispatcher\HttpStreamFormatter.cs (2)
53
SingleBodyParameterMessageFormatter
.SuppressReplyEntityBody(message);
63
SingleBodyParameterMessageFormatter
.SuppressRequestEntityBody(message);
System\ServiceModel\Dispatcher\SingleBodyParameterMessageFormatter.cs (2)
243
public static
SingleBodyParameterMessageFormatter
CreateXmlFormatter(OperationDescription operation, Type type, bool isRequestFormatter, UnwrappedTypesXmlSerializerManager xmlSerializerManager)
258
public static
SingleBodyParameterMessageFormatter
CreateJsonFormatter(OperationDescription operation, Type type, bool isRequestFormatter)