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

ReadDataInName() private méthode

private ReadDataInName ( int &pos ) : bool
pos int
Résultat bool
        private bool ReadDataInName(ref int pos)
        {
            int offset = pos - _ps.charPos;
            bool newDataRead = (ReadData() != 0);
            pos = _ps.charPos + offset;
            return newDataRead;
        }
XmlTextReaderImpl