System.Xml.IncrementalReadDecoder.Reset C# (CSharp) Method

Reset() abstract private method

abstract private Reset ( ) : void
return void
        internal abstract void Reset();
    }

Usage Example

示例#1
0
        private void InitIncrementalRead(IncrementalReadDecoder decoder)
        {
            ResetAttributes();

            decoder.Reset();
            _incReadDecoder = decoder;
            _incReadState = IncrementalReadState.Text;
            _incReadDepth = 1;
            _incReadLeftStartPos = _ps.charPos;
            _incReadLeftEndPos = _ps.charPos;
            _incReadLineInfo.Set(_ps.LineNo, _ps.LinePos);

            _parsingFunction = ParsingFunction.InIncrementalRead;
        }
All Usage Examples Of System.Xml.IncrementalReadDecoder::Reset