3 instantiations of SoapAttributes
System.Private.Xml (3)
System\Xml\Serialization\SoapReflectionImporter.cs (2)
146return new SoapAttributes(type); 153return new SoapAttributes(memberInfo);
System\Xml\Serialization\XmlReflectionMember.cs (1)
18private SoapAttributes _soapAttributes = new SoapAttributes();
25 references to SoapAttributes
netstandard (1)
netstandard.cs (1)
2389[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.SoapAttributes))]
System.Private.Xml (22)
System\Xml\Serialization\SoapAttributeOverrides.cs (5)
17public void Add(Type type, SoapAttributes? attributes) 22public void Add(Type type, string member, SoapAttributes? attributes) 37public SoapAttributes? this[Type type] 45public SoapAttributes? this[Type type, string member] 51return (SoapAttributes?)members[member];
System\Xml\Serialization\SoapReflectionImporter.cs (15)
142private SoapAttributes GetAttributes(Type type) 144SoapAttributes? attrs = _attributeOverrides[type]; 149private SoapAttributes GetAttributes(MemberInfo memberInfo) 151SoapAttributes? attrs = _attributeOverrides[memberInfo.DeclaringType!, memberInfo.Name]; 182SoapAttributes a = GetAttributes(model.Type); 203SoapAttributes baseAttributes = GetAttributes(baseTypeDesc!.Type!); 300SoapAttributes a = GetAttributes(model.Type); 391SoapAttributes memberAttrs = GetAttributes(memberInfo); 557SoapAttributes a = GetAttributes(model.Type); 592SoapAttributes a = GetAttributes(model.FieldInfo); 649SoapAttributes a = xmlReflectionMember.SoapAttributes; 666private MemberMapping? ImportFieldMapping(FieldModel model, SoapAttributes a, string ns, RecursionLimiter limiter) 683private void ImportAccessorMapping(MemberMapping accessor, FieldModel model, SoapAttributes a, string? ns, XmlSchemaForm form, RecursionLimiter limiter) 739private object? GetDefaultValue(TypeDesc fieldTypeDesc, SoapAttributes a) 772internal string XsdTypeName(Type type, SoapAttributes a, string name)
System\Xml\Serialization\XmlReflectionMember.cs (2)
18private SoapAttributes _soapAttributes = new SoapAttributes(); 47public SoapAttributes SoapAttributes
System.Xml (1)
System.Xml.cs (1)
114[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.SoapAttributes))]
System.Xml.XmlSerializer (1)
artifacts\obj\System.Xml.XmlSerializer\Debug\net10.0\System.Xml.XmlSerializer.Forwards.cs (1)
12[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.SoapAttributes))]