HtmlLexicalAnalyzer.HtmlLexicalAnalyzer C# (CSharp) Метод

HtmlLexicalAnalyzer() приватный Метод

initializes the _inputStringReader member with the string to be read also sets initial values for _nextCharacterCode and _nextTokenType
private HtmlLexicalAnalyzer ( string inputTextString ) : System
inputTextString string /// text string to be parsed for xml content ///
Результат System
    internal HtmlLexicalAnalyzer(string inputTextString)
    {
        _inputStringReader = new StringReader(inputTextString);
        _nextCharacterCode = 0;
        _nextCharacter = ' ';
        _lookAheadCharacterCode = _inputStringReader.Read();
        _lookAheadCharacter = (char)_lookAheadCharacterCode;
        _previousCharacter = ' ';
        _ignoreNextWhitespace = true;
        _nextToken = new StringBuilder(100);
        _nextTokenType = HtmlTokenType.Text;
        // read the first character so we have some value for the NextCharacter property
        this.GetNextCharacter();
    }