System.Xml.XmlElementList.XmlElementList C# (CSharp) Méthode

XmlElementList() private méthode

private XmlElementList ( XmlNode parent, string localName, string namespaceURI ) : System
parent XmlNode
localName string
namespaceURI string
Résultat System
        internal XmlElementList( XmlNode parent, string localName, string namespaceURI ): this( parent ) {
            Debug.Assert( parent.Document != null );
            XmlNameTable nt = parent.Document.NameTable;
            Debug.Assert( nt != null );
            asterisk = nt.Add("*");
            this.localName = nt.Get( localName );
            this.namespaceURI = nt.Get( namespaceURI );
            if( (this.localName == null) || (this.namespaceURI== null) ) {
                this.empty = true;
                this.atomized = false;
                this.localName = localName;
                this.namespaceURI = namespaceURI;
            }   
                this.name = null;
        }
        

Same methods

XmlElementList::XmlElementList ( XmlNode parent ) : System
XmlElementList::XmlElementList ( XmlNode parent, string name ) : System