System.Xml.Serialization.SoapAttributeOverrides.this C# (CSharp) Method

this() public method

public this ( Type type, string member ) : SoapAttributes
type System.Type
member string
return SoapAttributes
        public SoapAttributes this[Type type, string member] {
            get {
                Hashtable members = (Hashtable)types[type];
                if (members == null) return null;
                return (SoapAttributes)members[member];
            }
        }
    }

Same methods

SoapAttributeOverrides::this ( Type type ) : SoapAttributes
SoapAttributeOverrides