7 instantiations of SoapAttributes
System.ServiceModel (2)
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
961member.SoapAttributes = new SoapAttributes(additionalAttributesProvider); 968member.SoapAttributes = new SoapAttributes();
System.Web.Services (2)
System\Web\Services\Protocols\SoapReflector.cs (2)
427member.SoapAttributes = new SoapAttributes(methodInfo.ReturnTypeCustomAttributeProvider); 561soapParamInfo.soapAttributes = new SoapAttributes(paramInfo);
System.Xml (3)
System\Xml\Serialization\SoapReflectionImporter.cs (2)
170return new SoapAttributes(type); 176return new SoapAttributes(memberInfo);
System\Xml\Serialization\XmlReflectionMember.cs (1)
21SoapAttributes soapAttributes = new SoapAttributes();
23 references to SoapAttributes
System.Web.Services (1)
System\Web\Services\Protocols\SoapReflector.cs (1)
108internal SoapAttributes soapAttributes;
System.Xml (22)
System\Xml\Serialization\SoapAttributeOverrides.cs (5)
27public void Add(Type type, SoapAttributes attributes) { 35public void Add(Type type, string member, SoapAttributes attributes) { 51public SoapAttributes this[Type type] { 61public SoapAttributes this[Type type, string member] { 65return (SoapAttributes)members[member];
System\Xml\Serialization\SoapReflectionImporter.cs (15)
167SoapAttributes GetAttributes(Type type) { 168SoapAttributes attrs = attributeOverrides[type]; 173SoapAttributes GetAttributes(MemberInfo memberInfo) { 174SoapAttributes attrs = attributeOverrides[memberInfo.DeclaringType, memberInfo.Name]; 197SoapAttributes a = GetAttributes(model.Type); 216SoapAttributes baseAttributes = GetAttributes(baseTypeDesc.Type); 297SoapAttributes a = GetAttributes(model.Type); 377SoapAttributes memberAttrs = GetAttributes(memberInfo); 522SoapAttributes a = GetAttributes(model.Type); 553SoapAttributes a = GetAttributes(model.FieldInfo); 601SoapAttributes a = xmlReflectionMember.SoapAttributes; 617MemberMapping ImportFieldMapping(FieldModel model, SoapAttributes a, string ns, RecursionLimiter limiter) { 632void ImportAccessorMapping(MemberMapping accessor, FieldModel model, SoapAttributes a, string ns, XmlSchemaForm form, RecursionLimiter limiter) { 682object GetDefaultValue(TypeDesc fieldTypeDesc, SoapAttributes a) { 708internal string XsdTypeName(Type type, SoapAttributes a, string name) {
System\Xml\Serialization\XmlReflectionMember.cs (2)
21SoapAttributes soapAttributes = new SoapAttributes(); 47public SoapAttributes SoapAttributes {