25 instantiations of XmlAttributes
System.Private.Xml (7)
System\Xml\Serialization\Types.cs (1)
1305XmlAttributes methodAttrs = new XmlAttributes(enumerator);
System\Xml\Serialization\XmlReflectionImporter.cs (5)
28private readonly XmlAttributes _defaultAttributes = new XmlAttributes(); 256return new XmlAttributes(type); 263return new XmlAttributes(memberInfo); 1353XmlAttributes structAttrs = new XmlAttributes(xmlReflectionMember.MemberType!); 2296XmlAttributes a = new XmlAttributes(type);
System\Xml\Serialization\XmlReflectionMember.cs (1)
17private XmlAttributes _xmlAttributes = new XmlAttributes();
System.Web.Services.Description (18)
System\Web\Services\Configuration\WebServicesSection.cs (18)
35table.Add(typeof(ServiceDescription), new XmlAttributes()); 36table.Add(typeof(Import), new XmlAttributes()); 37table.Add(typeof(Port), new XmlAttributes()); 38table.Add(typeof(Service), new XmlAttributes()); 39table.Add(typeof(FaultBinding), new XmlAttributes()); 40table.Add(typeof(InputBinding), new XmlAttributes()); 41table.Add(typeof(OutputBinding), new XmlAttributes()); 42table.Add(typeof(OperationBinding), new XmlAttributes()); 43table.Add(typeof(Binding), new XmlAttributes()); 44table.Add(typeof(OperationFault), new XmlAttributes()); 45table.Add(typeof(OperationInput), new XmlAttributes()); 46table.Add(typeof(OperationOutput), new XmlAttributes()); 47table.Add(typeof(Operation), new XmlAttributes()); 48table.Add(typeof(PortType), new XmlAttributes()); 49table.Add(typeof(Message), new XmlAttributes()); 50table.Add(typeof(MessagePart), new XmlAttributes()); 51table.Add(typeof(Types), new XmlAttributes()); 66xmlAttrs = new XmlAttributes();
45 references to XmlAttributes
netstandard (1)
netstandard.cs (1)
2409[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.XmlAttributes))]
System.Private.Xml (37)
System\Xml\Serialization\Types.cs (1)
1305XmlAttributes methodAttrs = new XmlAttributes(enumerator);
System\Xml\Serialization\XmlAttributeOverrides.cs (10)
19private readonly Dictionary<Type, Dictionary<string, XmlAttributes?>> _types = new Dictionary<Type, Dictionary<string, XmlAttributes?>>(); 24public void Add(Type type, XmlAttributes attributes) 32public void Add(Type type, string member, XmlAttributes? attributes) 34Dictionary<string, XmlAttributes?>? members; 37members = new Dictionary<string, XmlAttributes?>(); 50public XmlAttributes? this[Type type] 61public XmlAttributes? this[Type type, string member] 65Dictionary<string, XmlAttributes?>? members; 66XmlAttributes? attributes;
System\Xml\Serialization\XmlMapping.cs (1)
116root ??= (XmlRootAttribute?)XmlAttributes.GetAttr(type, typeof(XmlRootAttribute));
System\Xml\Serialization\XmlReflectionImporter.cs (23)
28private readonly XmlAttributes _defaultAttributes = new XmlAttributes(); 248private XmlAttributes GetAttributes(Type type, bool canBeSimpleType) 250XmlAttributes? attrs = _attributeOverrides[type]; 259private XmlAttributes GetAttributes(MemberInfo memberInfo) 261XmlAttributes? attrs = _attributeOverrides[memberInfo.DeclaringType!, memberInfo.Name]; 270XmlAttributes a = GetAttributes(model.Type, true); 391private TypeMapping ImportTypeMapping(TypeModel model, string? ns, ImportContext context, string dataType, XmlAttributes? a, RecursionLimiter limiter) 398private TypeMapping ImportTypeMapping(TypeModel model, string? ns, ImportContext context, string dataType, XmlAttributes? a, bool repeats, bool openModel, RecursionLimiter limiter) 728private StructMapping ImportStructLikeMapping(StructModel model, string? ns, bool openModel, XmlAttributes? a, RecursionLimiter limiter) 855XmlAttributes memberAttrs = GetAttributes(memberInfo); 944private static bool IsAnonymousType(XmlAttributes a, string? contextNs) 971internal string XsdTypeName(Type type, XmlAttributes a, string name) 1010XmlAttributes a = GetAttributes(type, false); 1194XmlAttributes a = GetAttributes(model.Type, false); 1236XmlAttributes a = GetAttributes(model.FieldInfo); 1333XmlAttributes a = xmlReflectionMember.XmlAttributes; 1353XmlAttributes structAttrs = new XmlAttributes(xmlReflectionMember.MemberType!); 1412private MemberMapping ImportFieldMapping(StructModel parent, FieldModel model, XmlAttributes a, string? ns, RecursionLimiter limiter) 1533private void ImportAccessorMapping(MemberMapping accessor, FieldModel model, XmlAttributes a, string? ns, Type? choiceIdentifierType, bool rpc, bool openModel, RecursionLimiter limiter) 2048private static void CheckTopLevelAttributes(XmlAttributes a) 2080private void CheckAmbiguousChoice(XmlAttributes a, Type accessorType, string accessorName) 2148private static object? GetDefaultValue(TypeDesc fieldTypeDesc, Type t, XmlAttributes a) 2296XmlAttributes a = new XmlAttributes(type);
System\Xml\Serialization\XmlReflectionMember.cs (2)
17private XmlAttributes _xmlAttributes = new XmlAttributes(); 34public XmlAttributes XmlAttributes
System.Web.Services.Description (4)
System\Web\Services\Configuration\WebServicesSection.cs (4)
64XmlAttributes xmlAttrs = (XmlAttributes)table[extensionPointType]; 88XmlAttributes xmlAttrs = (XmlAttributes)table[extensionPointType];
System.Xml (1)
System.Xml.cs (1)
134[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.XmlAttributes))]
System.Xml.Serialization (1)
System.Xml.Serialization.cs (1)
13[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.XmlAttributes))]
System.Xml.XmlSerializer (1)
artifacts\obj\System.Xml.XmlSerializer\Debug\net10.0\System.Xml.XmlSerializer.Forwards.cs (1)
32[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.XmlAttributes))]