2 instantiations of DataContractFormatAttribute
System.ServiceModel.Primitives (2)
System\ServiceModel\Description\DataContractSerializerOperationBehavior.cs (1)
30
DataContractFormatAttribute = dataContractFormatAttribute ?? new
DataContractFormatAttribute
();
System\ServiceModel\Description\TypeLoader.cs (1)
35
internal static DataContractFormatAttribute DefaultDataContractFormatAttribute = new
DataContractFormatAttribute
();
14 references to DataContractFormatAttribute
System.ServiceModel.Primitives (14)
System\ServiceModel\Description\DataContractSerializerOperationBehavior.cs (3)
21
public
DataContractFormatAttribute
DataContractFormatAttribute { get; }
28
public DataContractSerializerOperationBehavior(OperationDescription operation,
DataContractFormatAttribute
dataContractFormatAttribute)
35
DataContractFormatAttribute
dataContractFormatAttribute, bool builtInOperationBehavior)
System\ServiceModel\Description\TypedMessageConverter.cs (3)
29
public static TypedMessageConverter Create(Type messageContract, string action,
DataContractFormatAttribute
formatterAttribute)
45
public static TypedMessageConverter Create(Type messageContract, string action, string defaultNamespace,
DataContractFormatAttribute
formatterAttribute)
75
return new DataContractSerializerOperationFormatter(operation, (
DataContractFormatAttribute
)formatAttribute, null);
System\ServiceModel\Description\TypeLoader.cs (6)
30
typeof(
DataContractFormatAttribute
)
35
internal static
DataContractFormatAttribute
DefaultDataContractFormatAttribute = new DataContractFormatAttribute();
286
DataContractFormatAttribute
dataContractFormatAttribute = formattingAttribute as
DataContractFormatAttribute
;
828
if (attrProvider.IsDefined(typeof(
DataContractFormatAttribute
), false))
830
return ServiceReflector.GetSingleAttribute<
DataContractFormatAttribute
>(attrProvider, s_formatterAttributes);
System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (2)
74
public DataContractSerializerOperationFormatter(OperationDescription description,
DataContractFormatAttribute
dataContractFormatAttribute,
106
private MessageInfo CreateMessageInfo(
DataContractFormatAttribute
dataContractFormatAttribute,