3 instantiations of SoapAttributes
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapReflectionImporter.cs (2)
181
return new
SoapAttributes
(type.GetTypeInfo().GetCustomAttributes(false) as Attribute[]);
188
return new
SoapAttributes
(memberInfo.GetCustomAttributes(false) as Attribute[]);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionMember.cs (1)
19
private SoapAttributes _soapAttributes = new
SoapAttributes
();
22 references to SoapAttributes
dotnet-svcutil-lib (22)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapAttributeOverrides.cs (5)
26
public void Add(Type type,
SoapAttributes
attributes)
35
public void Add(Type type, string member,
SoapAttributes
attributes)
54
public
SoapAttributes
this[Type type]
66
public
SoapAttributes
this[Type type, string member]
72
return (
SoapAttributes
)members[member];
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapReflectionImporter.cs (15)
177
private
SoapAttributes
GetAttributes(Type type)
179
SoapAttributes
attrs = _attributeOverrides[type];
184
private
SoapAttributes
GetAttributes(MemberInfo memberInfo)
186
SoapAttributes
attrs = _attributeOverrides[memberInfo.DeclaringType, memberInfo.Name];
215
SoapAttributes
a = GetAttributes(model.Type);
236
SoapAttributes
baseAttributes = GetAttributes(baseTypeDesc.Type);
329
SoapAttributes
a = GetAttributes(model.Type);
420
SoapAttributes
memberAttrs = GetAttributes(memberInfo);
586
SoapAttributes
a = GetAttributes(model.Type);
621
SoapAttributes
a = GetAttributes(model.FieldInfo);
677
SoapAttributes
a = xmlReflectionMember.SoapAttributes;
693
private MemberMapping ImportFieldMapping(FieldModel model,
SoapAttributes
a, string ns, RecursionLimiter limiter)
709
private void ImportAccessorMapping(MemberMapping accessor, FieldModel model,
SoapAttributes
a, string ns, XmlSchemaForm form, RecursionLimiter limiter)
764
private object GetDefaultValue(TypeDesc fieldTypeDesc,
SoapAttributes
a)
794
internal string XsdTypeName(Type type,
SoapAttributes
a, string name)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionMember.cs (2)
19
private
SoapAttributes
_soapAttributes = new SoapAttributes();
47
public
SoapAttributes
SoapAttributes