4 instantiations of DataContractSerializerOperationFormatter
System.ServiceModel (4)
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (1)
182
operation.Formatter = new
DataContractSerializerOperationFormatter
(opDesc, TypeLoader.DefaultDataContractFormatAttribute, null);
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (1)
176
operation.Formatter = new
DataContractSerializerOperationFormatter
(opDesc, TypeLoader.DefaultDataContractFormatAttribute, null);
System\ServiceModel\Description\DataContractSerializerOperationBehavior.cs (1)
126
return new
DataContractSerializerOperationFormatter
(operation, dataContractFormatAttribute, this);
System\ServiceModel\Description\TypedMessageConverter.cs (1)
75
return new
DataContractSerializerOperationFormatter
(operation, (DataContractFormatAttribute)formatAttribute, null);
5 references to DataContractSerializerOperationFormatter
System.ServiceModel (5)
System\ServiceModel\Description\MessageContractExporter.cs (3)
948
Type dataContractType =
DataContractSerializerOperationFormatter
.GetSubstituteDataContractType(header.Type, out isQueryable);
978
Type dataContractType =
DataContractSerializerOperationFormatter
.GetSubstituteDataContractType(description.Body.ReturnValue.Type, out isQueryable);
986
Type dataContractType =
DataContractSerializerOperationFormatter
.GetSubstituteDataContractType(bodyPart.Type, out isQueryable);
System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (2)
352
Type dataContractType =
DataContractSerializerOperationFormatter
.GetSubstituteDataContractType(headerDescription.Type, out isQueryable);
548
this.contractType =
DataContractSerializerOperationFormatter
.GetSubstituteDataContractType(description.Type, out this.isQueryable);