3 instantiations of SoapAttributes
System.Private.Xml (3)
System\Xml\Serialization\SoapReflectionImporter.cs (2)
146
return new
SoapAttributes
(type);
153
return new
SoapAttributes
(memberInfo);
System\Xml\Serialization\XmlReflectionMember.cs (1)
18
private 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)
17
public void Add(Type type,
SoapAttributes
? attributes)
22
public void Add(Type type, string member,
SoapAttributes
? attributes)
37
public
SoapAttributes
? this[Type type]
45
public
SoapAttributes
? this[Type type, string member]
51
return (
SoapAttributes
?)members[member];
System\Xml\Serialization\SoapReflectionImporter.cs (15)
142
private
SoapAttributes
GetAttributes(Type type)
144
SoapAttributes
? attrs = _attributeOverrides[type];
149
private
SoapAttributes
GetAttributes(MemberInfo memberInfo)
151
SoapAttributes
? attrs = _attributeOverrides[memberInfo.DeclaringType!, memberInfo.Name];
182
SoapAttributes
a = GetAttributes(model.Type);
203
SoapAttributes
baseAttributes = GetAttributes(baseTypeDesc!.Type!);
300
SoapAttributes
a = GetAttributes(model.Type);
391
SoapAttributes
memberAttrs = GetAttributes(memberInfo);
557
SoapAttributes
a = GetAttributes(model.Type);
592
SoapAttributes
a = GetAttributes(model.FieldInfo);
649
SoapAttributes
a = xmlReflectionMember.SoapAttributes;
666
private MemberMapping? ImportFieldMapping(FieldModel model,
SoapAttributes
a, string ns, RecursionLimiter limiter)
683
private void ImportAccessorMapping(MemberMapping accessor, FieldModel model,
SoapAttributes
a, string? ns, XmlSchemaForm form, RecursionLimiter limiter)
739
private object? GetDefaultValue(TypeDesc fieldTypeDesc,
SoapAttributes
a)
772
internal string XsdTypeName(Type type,
SoapAttributes
a, string name)
System\Xml\Serialization\XmlReflectionMember.cs (2)
18
private
SoapAttributes
_soapAttributes = new SoapAttributes();
47
public
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
))]