System.Xml.XmlTextReaderImpl.SkipPartialTextValue C# (CSharp) Méthode

SkipPartialTextValue() private méthode

private SkipPartialTextValue ( ) : void
Résultat void
        private void SkipPartialTextValue()
        {
            Debug.Assert(_parsingFunction == ParsingFunction.PartialTextValue || _parsingFunction == ParsingFunction.InReadValueChunk ||
                          _parsingFunction == ParsingFunction.InReadContentAsBinary || _parsingFunction == ParsingFunction.InReadElementContentAsBinary);
            int startPos;
            int endPos;
            int orChars = 0;

            _parsingFunction = _nextParsingFunction;
            while (!ParseText(out startPos, out endPos, ref orChars)) ;
        }
XmlTextReaderImpl