System.Xml.XmlReader.XmlReader.ReadContentString C# (CSharp) Méthode

ReadContentString() private méthode

private ReadContentString ( ) : string
Résultat 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