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