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

FinishReadElementContentAsBinary() private méthode

private FinishReadElementContentAsBinary ( ) : void
Résultat void
        private void FinishReadElementContentAsBinary()
        {
            FinishReadContentAsBinary();

            if (_curNode.type != XmlNodeType.EndElement)
            {
                Throw(SR.Xml_InvalidNodeType, _curNode.type.ToString());
            }
            // move off the end element
            _outerReader.Read();
        }
XmlTextReaderImpl