TraceReader.Item[] Property

Definition

Gets the specified column.

Overloads

Item[Int32]

Gets the column specified by the index position.

Item[String]

Gets the column with the specified name.

Item[Int32]

Gets the column specified by the index position.

public:
 property System::Object ^ default[int] { System::Object ^ get(int index); };
public object this[int index] { get; }
member this.Item(int) : obj
Default Public ReadOnly Property Item(index As Integer) As Object

Parameters

index
Int32

An Int32 value that specifies the index position of the column in the record.

Property Value

An Object system object value that specifies the column.

Implements

Examples

Readme_Tracer

Applies to

Item[String]

Gets the column with the specified name.

public:
 property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); };
public object this[string name] { get; }
member this.Item(string) : obj
Default Public ReadOnly Property Item(name As String) As Object

Parameters

name
String

A String value that specifies the name of the column.

Property Value

An Object system object value that specifies the column.

Implements

Examples

Readme_Tracer

Applies to