System.Xml.IncrementalReadDecoder.Reset C# (CSharp) Méthode

Reset() abstract private méthode

abstract private Reset ( ) : void
Résultat void
        internal abstract void Reset();
    }

Usage Example

Exemple #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