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

SetupEndEntityNodeInAttribute() private method

private SetupEndEntityNodeInAttribute ( ) : void
return void
        private void SetupEndEntityNodeInAttribute()
        {
            _curNode = _nodes[_index + _attrCount + 1];
            Debug.Assert(_curNode.type == XmlNodeType.EntityReference);
            Debug.Assert(Ref.Equal(_lastEntity.Name, _curNode.localName));
            _curNode.lineInfo.linePos += _curNode.localName.Length;
            _curNode.type = XmlNodeType.EndEntity;
        }
XmlTextReaderImpl