27 instantiations of XmlAttributes
dotnet-svcutil-lib (27)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Types.cs (1)
1315
XmlAttributes methodAttrs = new
XmlAttributes
(customAttribs);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (5)
27
private XmlAttributes _defaultAttributes = new
XmlAttributes
();
248
return new
XmlAttributes
(type.GetTypeInfo().GetCustomAttributes());
256
return customAttribs != null ? new
XmlAttributes
(customAttribs) : null;
1342
XmlAttributes structAttrs = new
XmlAttributes
(xmlReflectionMember.MemberType.GetTypeInfo().GetCustomAttributes());
2249
XmlAttributes a = new
XmlAttributes
(type.GetTypeInfo().GetCustomAttributes());
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionMember.cs (1)
18
private XmlAttributes _xmlAttributes = new
XmlAttributes
();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
837
member.XmlAttributes = new
XmlAttributes
(additionalAttributesProvider.GetCustomAttributes());
841
member.XmlAttributes = new
XmlAttributes
();
FrameworkFork\System.Web.Services\Configuration\WebServicesSection.cs (18)
33
table.Add(typeof(ServiceDescription), new
XmlAttributes
());
34
table.Add(typeof(Import), new
XmlAttributes
());
35
table.Add(typeof(Port), new
XmlAttributes
());
36
table.Add(typeof(Service), new
XmlAttributes
());
37
table.Add(typeof(FaultBinding), new
XmlAttributes
());
38
table.Add(typeof(InputBinding), new
XmlAttributes
());
39
table.Add(typeof(OutputBinding), new
XmlAttributes
());
40
table.Add(typeof(OperationBinding), new
XmlAttributes
());
41
table.Add(typeof(Binding), new
XmlAttributes
());
42
table.Add(typeof(OperationFault), new
XmlAttributes
());
43
table.Add(typeof(OperationInput), new
XmlAttributes
());
44
table.Add(typeof(OperationOutput), new
XmlAttributes
());
45
table.Add(typeof(Operation), new
XmlAttributes
());
46
table.Add(typeof(PortType), new
XmlAttributes
());
47
table.Add(typeof(Message), new
XmlAttributes
());
48
table.Add(typeof(MessagePart), new
XmlAttributes
());
49
table.Add(typeof(Types), new
XmlAttributes
());
69
xmlAttrs = new
XmlAttributes
();
36 references to XmlAttributes
dotnet-svcutil-lib (36)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Types.cs (1)
1315
XmlAttributes
methodAttrs = new XmlAttributes(customAttribs);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlAttributeOverrides.cs (5)
26
public void Add(Type type,
XmlAttributes
attributes)
35
public void Add(Type type, string member,
XmlAttributes
attributes)
54
public
XmlAttributes
this[Type type]
66
public
XmlAttributes
this[Type type, string member]
72
return (
XmlAttributes
)members[member];
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (23)
27
private
XmlAttributes
_defaultAttributes = new XmlAttributes();
240
private
XmlAttributes
GetAttributes(Type type, bool canBeSimpleType)
242
XmlAttributes
attrs = _attributeOverrides[type];
251
private
XmlAttributes
GetAttributes(MemberInfo memberInfo)
253
XmlAttributes
attrs = _attributeOverrides[memberInfo.DeclaringType, memberInfo.Name];
261
XmlAttributes
a = GetAttributes(model.Type, true);
383
private TypeMapping ImportTypeMapping(TypeModel model, string ns, ImportContext context, string dataType,
XmlAttributes
a, RecursionLimiter limiter)
388
private TypeMapping ImportTypeMapping(TypeModel model, string ns, ImportContext context, string dataType,
XmlAttributes
a, bool repeats, bool openModel, RecursionLimiter limiter)
726
private StructMapping ImportStructLikeMapping(StructModel model, string ns, bool openModel,
XmlAttributes
a, RecursionLimiter limiter)
852
XmlAttributes
memberAttrs = GetAttributes(memberInfo);
937
private static bool IsAnonymousType(
XmlAttributes
a, string contextNs)
962
internal string XsdTypeName(Type type,
XmlAttributes
a, string name)
1001
XmlAttributes
a = GetAttributes(type, false);
1186
XmlAttributes
a = GetAttributes(model.Type, false);
1228
XmlAttributes
a = GetAttributes(model.FieldInfo);
1322
XmlAttributes
a = xmlReflectionMember.XmlAttributes;
1342
XmlAttributes
structAttrs = new XmlAttributes(xmlReflectionMember.MemberType.GetTypeInfo().GetCustomAttributes());
1399
private MemberMapping ImportFieldMapping(StructModel parent, FieldModel model,
XmlAttributes
a, string ns, RecursionLimiter limiter)
1515
private void ImportAccessorMapping(MemberMapping accessor, FieldModel model,
XmlAttributes
a, string ns, Type choiceIdentifierType, bool rpc, bool openModel, RecursionLimiter limiter)
2033
private void CheckTopLevelAttributes(
XmlAttributes
a, string accessorName)
2065
private void CheckAmbiguousChoice(
XmlAttributes
a, Type accessorType, string accessorName)
2133
private object GetDefaultValue(TypeDesc fieldTypeDesc, Type t,
XmlAttributes
a)
2249
XmlAttributes
a = new XmlAttributes(type.GetTypeInfo().GetCustomAttributes());
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionMember.cs (2)
18
private
XmlAttributes
_xmlAttributes = new XmlAttributes();
37
public
XmlAttributes
XmlAttributes
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
911
private static bool HasNoXmlParameterAttributes(
XmlAttributes
xmlAttributes)
FrameworkFork\System.Web.Services\Configuration\WebServicesSection.cs (4)
66
XmlAttributes
xmlAttrs = (
XmlAttributes
)table[extensionPointType];
94
XmlAttributes
xmlAttrs = (
XmlAttributes
)table[extensionPointType];