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