4 instantiations of XmlSerializerFormatAttribute
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (1)
35internal static XmlSerializerFormatAttribute DefaultXmlSerializerFormatAttribute = new XmlSerializerFormatAttribute();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
38_reflector = parentReflector.ReflectOperation(operation, attribute ?? new XmlSerializerFormatAttribute()); 45_reflector = parentReflector.ReflectOperation(operation, attribute ?? new XmlSerializerFormatAttribute());
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationGenerator.cs (1)
143XmlSerializerFormatAttribute xmlSerializerFormatAttribute = (xmlSerializerOperationBehavior == null) ? new XmlSerializerFormatAttribute() : xmlSerializerOperationBehavior.XmlSerializerFormatAttribute;
28 references to XmlSerializerFormatAttribute
dotnet-svcutil-lib (28)
FrameworkFork\System.ServiceModel\System\ServiceModel\DataContractFormatAttribute.cs (1)
19XmlSerializerFormatAttribute.ValidateOperationFormatStyle(_style);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (5)
2113internal static XmlSerializerFormatAttribute GetFormatAttribute(OperationDescription operation, bool createNew) 2128XmlSerializerFormatAttribute operationAttribute = GetFormatAttribute(operation, true/*createNew*/); 2134XmlSerializerFormatAttribute operationAttribute = GetFormatAttribute(operation, false /*createNew*/); 2142XmlSerializerFormatAttribute operationAttribute = GetFormatAttribute(operation, true/*createNew*/); 2148XmlSerializerFormatAttribute operationAttribute = GetFormatAttribute(operation, true/*createNew*/);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (5)
28typeof(XmlSerializerFormatAttribute), 35internal static XmlSerializerFormatAttribute DefaultXmlSerializerFormatAttribute = new XmlSerializerFormatAttribute(); 294else if (formattingAttribute != null && formattingAttribute is XmlSerializerFormatAttribute) 811if (attrProvider.IsDefined(typeof(XmlSerializerFormatAttribute), false)) 813return ServiceReflector.GetSingleAttribute<XmlSerializerFormatAttribute>(attrProvider, s_formatterAttributes);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (12)
31public XmlSerializerOperationBehavior(OperationDescription operation, XmlSerializerFormatAttribute attribute) 41internal XmlSerializerOperationBehavior(OperationDescription operation, XmlSerializerFormatAttribute attribute, Reflector parentReflector) 65public XmlSerializerFormatAttribute XmlSerializerFormatAttribute 78internal static XmlSerializerOperationFormatter CreateOperationFormatter(OperationDescription operation, XmlSerializerFormatAttribute attr) 196private static XmlSerializerFormatAttribute FindAttribute(OperationDescription operation) 199XmlSerializerFormatAttribute contractFormatAttribute = contractType != null ? TypeLoader.GetFormattingAttribute(contractType, null) as XmlSerializerFormatAttribute : null; 200return TypeLoader.GetFormattingAttribute(operation.OperationMethod, contractFormatAttribute) as XmlSerializerFormatAttribute; 206XmlSerializerFormatAttribute attr = FindAttribute(operation); 214internal OperationReflector ReflectOperation(OperationDescription operation, XmlSerializerFormatAttribute attrOverride) 227internal readonly XmlSerializerFormatAttribute Attribute; 240internal OperationReflector(Reflector parent, OperationDescription operation, XmlSerializerFormatAttribute attr, bool reflectOnDemand)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationGenerator.cs (4)
23private Dictionary<OperationDescription, XmlSerializerFormatAttribute> _operationAttributes = new Dictionary<OperationDescription, XmlSerializerFormatAttribute>(); 97internal Dictionary<OperationDescription, XmlSerializerFormatAttribute> OperationAttributes 143XmlSerializerFormatAttribute xmlSerializerFormatAttribute = (xmlSerializerOperationBehavior == null) ? new XmlSerializerFormatAttribute() : xmlSerializerOperationBehavior.XmlSerializerFormatAttribute;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (1)
30public XmlSerializerOperationFormatter(OperationDescription description, XmlSerializerFormatAttribute xmlSerializerFormatAttribute,