System.Xml.XmlNodeReader.XmlNodeReader.ReadAttributeValue C# (CSharp) Méthode

ReadAttributeValue() public méthode

public ReadAttributeValue ( ) : bool
Résultat bool
		public override bool ReadAttributeValue ()
		{
			if (entity != null && entityInsideAttribute) {
				if (entity.EOF)
					entity = null;
				else {
					entity.Read ();
					return true; // either success or EndEntity
				}
			}
			return Current.ReadAttributeValue ();
		}