TraceReader.Item[] Property
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.
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
Property Value
An Object system object value that specifies the column.
Implements
Examples
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
Property Value
An Object system object value that specifies the column.