TraceReader.Item Property (String)
Gets the column with the specified name.
Namespace: Microsoft.SqlServer.Management.Trace
Assembly: Microsoft.SqlServer.ConnectionInfoExtended (in Microsoft.SqlServer.ConnectionInfoExtended.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
name As String _
) As Object
Get
'Usage
Dim instance As TraceReader
Dim name As String
Dim value As Object
value = instance(name)
public Object this[
string name
] { get; }
public:
virtual property Object^ default[String^ name] {
Object^ get (String^ name) sealed;
}
abstract Item : Object
override Item : Object
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- name
Type: System.String
A String value that specifies the name of the column.
Property Value
Type: System.Object
An Object system object value that specifies the column.
Implements
See Also