System.Xml.XmlReader.XmlReader.ReadContentString C# (CSharp) 메소드

ReadContentString() 개인적인 메소드

private ReadContentString ( ) : string
리턴 string
		private string ReadContentString ()
		{
			// The latter condition indicates that this XmlReader is on an attribute value
			// (HasAttributes is to indicate it is on attribute value).
			if (NodeType == XmlNodeType.Attribute || NodeType != XmlNodeType.Element && HasAttributes)
				return Value;
			return ReadContentString (true);
		}

Same methods

XmlReader.XmlReader::ReadContentString ( bool isText ) : string