System.Xml.XmlAttributeCollection.this C# (CSharp) Méthode

this() private méthode

private this ( int i ) : XmlAttribute
i int
Résultat XmlAttribute
        public XmlAttribute this[ int i ] {
            get { 
                try {
                    return(XmlAttribute) Nodes[i];
                } catch ( ArgumentOutOfRangeException ) {
                    throw new IndexOutOfRangeException(Res.GetString(Res.Xdom_IndexOutOfRange));
                }
            }
        }

Same methods

XmlAttributeCollection::this ( string name ) : XmlAttribute
XmlAttributeCollection::this ( string localName, string namespaceURI ) : XmlAttribute