internal new void Reset()
 {
     tagIndex  = (originalTagIndex = HtmlTagIndex._NULL);
     nameIndex = HtmlNameIndex._NOTANAME;
     flags     = TagFlags.None;
     partMajor = TagPartMajor.None;
     partMinor = TagPartMinor.Empty;
     name.Reset();
     unstructured.Reset();
     namePosition.Reset();
     unstructuredPosition.Reset();
     attributeTail    = 0;
     currentAttribute = -1;
     attrNamePosition.Reset();
     attrValuePosition.Reset();
 }
Esempio n. 2
0
        internal new void Reset()
        {
            this.tagIndex  = this.originalTagIndex = HtmlTagIndex._NULL;
            this.nameIndex = HtmlNameIndex._NOTANAME;
            this.flags     = HtmlToken.TagFlags.None;
            this.partMajor = HtmlToken.TagPartMajor.None;
            this.partMinor = HtmlToken.TagPartMinor.Empty;

            this.name.Reset();
            this.unstructured.Reset();

            this.namePosition.Reset();
            this.unstructuredPosition.Reset();

            this.attributeTail    = 0;
            this.currentAttribute = -1;

            this.attrNamePosition.Reset();
            this.attrValuePosition.Reset();
        }