Mono.Xml.DTDValidatingReader.MoveToAttribute C# (CSharp) Method

MoveToAttribute() public method

public MoveToAttribute ( string name ) : bool
name string
return bool
		public override bool MoveToAttribute (string name)
		{
			if (currentTextValue != null)
				return false;

			int i = GetAttributeIndex (name);
			if (i < 0)
				return false;
			if (i < reader.AttributeCount)
				reader.MoveToAttribute (i);
			currentAttribute = i;
			consumedAttribute = false;
			return true;
		}

Same methods

DTDValidatingReader::MoveToAttribute ( string name, string ns ) : bool
DTDValidatingReader::MoveToAttribute ( int i ) : void