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

GetAttribute() public method

public GetAttribute ( int i ) : string
i int
return string
		public override string GetAttribute (int i)
		{
			if (currentTextValue != null)
				throw new IndexOutOfRangeException ("Specified index is out of range: " + i);

			if (attributeCount <= i)
				throw new IndexOutOfRangeException ("Specified index is out of range: " + i);
			return attributes [i].Value;
		}

Same methods

DTDValidatingReader::GetAttribute ( string name ) : string
DTDValidatingReader::GetAttribute ( string name, string ns ) : string