Noemax FastInfoset.NET
MoveToAttribute(String) Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetReader Class > MoveToAttribute Method : MoveToAttribute(String) Method






name
The qualified name of the attribute.
Moves to the attribute specified by the qualified name.

Syntax

Visual Basic (Declaration) 
Public Overloads Overrides NotOverridable Function MoveToAttribute( _
   ByVal name As String _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetReader
Dim name As String
Dim value As Boolean
 
value = instance.MoveToAttribute(name)
C# 
public override bool MoveToAttribute( 
   string name
)
Delphi 
public function MoveToAttribute( 
    name: String
): Boolean; override; 
JScript 
public override function MoveToAttribute( 
   name : String
) : boolean;
Managed Extensions for C++ 
public: bool MoveToAttribute( 
   string* name
) override 
C++/CLI 
public:
bool MoveToAttribute( 
   String^ name
) override 

Parameters

name
The qualified name of the attribute.

Return Value

true if the attribute is found; otherwise, false. If false, the reader's position does not change.

See Also