System.Xml.XmlReader.XmlReader.MoveToAttribute C# (CSharp) Method

MoveToAttribute() public method

public MoveToAttribute ( int i ) : void
i int
return void
		public virtual void MoveToAttribute (int i)
		{
			if (i >= AttributeCount)
				throw new ArgumentOutOfRangeException ();
			MoveToFirstAttribute ();
			for (int a = 0; a < i; a++)
				MoveToNextAttribute ();
		}
#else

Same methods

XmlReader.XmlReader::MoveToAttribute ( string name ) : bool
XmlReader.XmlReader::MoveToAttribute ( string localName, string namespaceName ) : bool