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






i
The index of the attribute.
Gets the value of an attribute.

Syntax

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

Parameters

i
The index of the attribute.

Return Value

The value of the specified attribute.

See Also