System.Xml.XmlTextReaderImpl.FinishReadElementContentAsBinary C# (CSharp) Method

FinishReadElementContentAsBinary() private method

private FinishReadElementContentAsBinary ( ) : void
return 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