DelegatingXmlDictionaryReader.MoveToAttribute Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MoveToAttribute(String) |
Moves to the attribute with the given local name. |
MoveToAttribute(String, String) |
Moves to the attribute with the specified System.Xml.XmlReader.LocalName and System.Xml.XmlReader.NamespaceURI. |
MoveToAttribute(Int32) |
Moves to the attribute with the specified index. |
MoveToAttribute(String)
Moves to the attribute with the given local name.
public:
override bool MoveToAttribute(System::String ^ name);
public override bool MoveToAttribute (string name);
override this.MoveToAttribute : string -> bool
Public Overrides Function MoveToAttribute (name As String) As Boolean
Parameters
- name
- String
The qualified name of the attribute.
Returns
true
if the attribute is found; otherwise, false
.
Applies to
MoveToAttribute(String, String)
Moves to the attribute with the specified System.Xml.XmlReader.LocalName and System.Xml.XmlReader.NamespaceURI.
public:
override bool MoveToAttribute(System::String ^ name, System::String ^ ns);
public override bool MoveToAttribute (string name, string ns);
override this.MoveToAttribute : string * string -> bool
Public Overrides Function MoveToAttribute (name As String, ns As String) As Boolean
Parameters
- name
- String
The local name of the attribute.
- ns
- String
The namespace URI of the attribute.
Returns
true
if the attribute is found; otherwise, false
.
Applies to
MoveToAttribute(Int32)
Moves to the attribute with the specified index.
public:
override void MoveToAttribute(int i);
public override void MoveToAttribute (int i);
override this.MoveToAttribute : int -> unit
Public Overrides Sub MoveToAttribute (i As Integer)
Parameters
- i
- Int32
The index of the attribute.