System.Xml.XmlTextReaderImpl.PopParsingState C# (CSharp) Method

PopParsingState() private method

private PopParsingState ( ) : void
return void
        private void PopParsingState()
        {
            Debug.Assert(_parsingStatesStackTop >= 0);
            _ps.Close(true);
            _ps = _parsingStatesStack[_parsingStatesStackTop--];
        }
XmlTextReaderImpl