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