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

XmlName() private méthode

private XmlName ( string prefix, string localName, string ns, int hashCode, XmlDocument ownerDoc, XmlName next ) : System.Text
prefix string
localName string
ns string
hashCode int
ownerDoc XmlDocument
next XmlName
Résultat System.Text
        internal XmlName(string prefix, string localName, string ns, int hashCode, XmlDocument ownerDoc, XmlName next) {
            this.prefix = prefix;
            this.localName = localName;
            this.ns = ns;
            this.name = null;
            this.hashCode = hashCode;
            this.ownerDoc = ownerDoc;
            this.next = next;
        }