5 instantiations of XmlSerializerFormatAttribute
System.ServiceModel (4)
System\ServiceModel\Description\TypeLoader.cs (1)
35internal static XmlSerializerFormatAttribute DefaultXmlSerializerFormatAttribute = new XmlSerializerFormatAttribute();
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
37this.reflector = parentReflector.ReflectOperation(operation, attribute ?? new XmlSerializerFormatAttribute()); 44this.reflector = parentReflector.ReflectOperation(operation, attribute ?? new XmlSerializerFormatAttribute());
System\ServiceModel\Description\XmlSerializerOperationGenerator.cs (1)
142XmlSerializerFormatAttribute xmlSerializerFormatAttribute = (xmlSerializerOperationBehavior == null) ? new XmlSerializerFormatAttribute() : xmlSerializerOperationBehavior.XmlSerializerFormatAttribute;
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\ContractInferenceHelper.cs (1)
43xmlSerializerFormatAttribute = new XmlSerializerFormatAttribute
37 references to XmlSerializerFormatAttribute
System.ServiceModel (34)
System\ServiceModel\DataContractFormatAttribute.cs (1)
18XmlSerializerFormatAttribute.ValidateOperationFormatStyle(style);
System\ServiceModel\Description\MessageContractExporter.cs (2)
1182XmlSerializerFormatAttribute xsFormatAttr; 1183internal ExtensionData(XmlSerializerFormatAttribute xsFormatAttr)
System\ServiceModel\Description\MessageContractImporter.cs (5)
2126internal static XmlSerializerFormatAttribute GetFormatAttribute(OperationDescription operation, bool createNew) 2141XmlSerializerFormatAttribute operationAttribute = GetFormatAttribute(operation, true/*createNew*/); 2147XmlSerializerFormatAttribute operationAttribute = GetFormatAttribute(operation, false /*createNew*/); 2155XmlSerializerFormatAttribute operationAttribute = GetFormatAttribute(operation, true/*createNew*/); 2161XmlSerializerFormatAttribute operationAttribute = GetFormatAttribute(operation, true/*createNew*/);
System\ServiceModel\Description\TypedMessageConverter.cs (4)
24public static TypedMessageConverter Create(Type messageContract, string action, XmlSerializerFormatAttribute formatterAttribute) 34public static TypedMessageConverter Create(Type messageContract, String action, String defaultNamespace, XmlSerializerFormatAttribute formatterAttribute) 65bool isXmlSerializer = (formatAttribute is XmlSerializerFormatAttribute); 73return XmlSerializerOperationBehavior.CreateOperationFormatter(operation, (XmlSerializerFormatAttribute)formatAttribute);
System\ServiceModel\Description\TypeLoader.cs (5)
28typeof(XmlSerializerFormatAttribute), 35internal static XmlSerializerFormatAttribute DefaultXmlSerializerFormatAttribute = new XmlSerializerFormatAttribute(); 306else if (formattingAttribute != null && formattingAttribute is XmlSerializerFormatAttribute) 762if (attrProvider.IsDefined(typeof(XmlSerializerFormatAttribute), false)) 764return ServiceReflector.GetSingleAttribute<XmlSerializerFormatAttribute>(attrProvider, formatterAttributes);
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (12)
30public XmlSerializerOperationBehavior(OperationDescription operation, XmlSerializerFormatAttribute attribute) 40internal XmlSerializerOperationBehavior(OperationDescription operation, XmlSerializerFormatAttribute attribute, Reflector parentReflector) 64public XmlSerializerFormatAttribute XmlSerializerFormatAttribute 77internal static XmlSerializerOperationFormatter CreateOperationFormatter(OperationDescription operation, XmlSerializerFormatAttribute attr) 240static XmlSerializerFormatAttribute FindAttribute(OperationDescription operation) 243XmlSerializerFormatAttribute contractFormatAttribute = contractType != null ? TypeLoader.GetFormattingAttribute(contractType, null) as XmlSerializerFormatAttribute : null; 244return TypeLoader.GetFormattingAttribute(operation.OperationMethod, contractFormatAttribute) as XmlSerializerFormatAttribute; 250XmlSerializerFormatAttribute attr = FindAttribute(operation); 258internal OperationReflector ReflectOperation(OperationDescription operation, XmlSerializerFormatAttribute attrOverride) 271internal readonly XmlSerializerFormatAttribute Attribute; 285internal OperationReflector(Reflector parent, OperationDescription operation, XmlSerializerFormatAttribute attr, bool reflectOnDemand)
System\ServiceModel\Description\XmlSerializerOperationGenerator.cs (4)
22Dictionary<OperationDescription, XmlSerializerFormatAttribute> operationAttributes = new Dictionary<OperationDescription, XmlSerializerFormatAttribute>(); 96internal Dictionary<OperationDescription, XmlSerializerFormatAttribute> OperationAttributes 142XmlSerializerFormatAttribute xmlSerializerFormatAttribute = (xmlSerializerOperationBehavior == null) ? new XmlSerializerFormatAttribute() : xmlSerializerOperationBehavior.XmlSerializerFormatAttribute;
System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (1)
31public XmlSerializerOperationFormatter(OperationDescription description, XmlSerializerFormatAttribute xmlSerializerFormatAttribute,
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\ContractInferenceHelper.cs (2)
21static XmlSerializerFormatAttribute xmlSerializerFormatAttribute; 37public static XmlSerializerFormatAttribute XmlSerializerFormatAttribute
System.ServiceModel.Web (1)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
161SR2.GetString(SR2.WebScriptNotSupportedForXmlSerializerFormat, typeof(XmlSerializerFormatAttribute).Name, this.GetType().ToString())));