System.Xml.Serialization.SoapAttributeOverrides.this C# (CSharp) 메소드

this() 공개 메소드

public this ( Type type, string member ) : SoapAttributes
type System.Type
member string
리턴 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