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