Noemax FastInfoset.NET
Item Property
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetReader Class : Item Property






i
Gets the value of the attribute specified by the index. In C#, this property is the indexer for the XmlFastInfosetReader class. Gets the value of the attribute. In C#, this property is the indexer for the XmlFastInfosetReader class.

Syntax

Visual Basic (Declaration) 
Public Overrides NotOverridable ReadOnly Default Property Item( _
   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.Item(i)
C# 
public override string this( 
   int i
) {get;}
Delphi 
public  this: : String;( 
    i: Integer
);override;  read-only
JScript 
public override  this( 
   i : int
) get : String
Managed Extensions for C++ 
public: __property string* get_Item( 
   int i
) override;
C++/CLI 
public:
property String^ default [int] override {
   String^ get(int i) override;
}

Parameters

i

Property Value

The value of the specified attribute.The value of the specified attribute.

See Also