TraceEventArgs.Item Property (TraceColumn)

 

Applies To: SQL Server 2016 Preview

Corresponds to the indexor property in the C# language. It allows indexing of a collection in the same manner as with arrays.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

public string this[
    TraceColumn column
] { get; set; }
public:
property String^ default[
    TraceColumn column
] {
    String^ get(TraceColumn column);
    void set(TraceColumn column, String^ value);
}
member Item : 
        column:TraceColumn -> string with get, set
Public Property Item (
    column As TraceColumn
) As String

Parameters

Property Value

Type: System.String

The value of a trace column from a trace event.

See Also

TraceEventArgs Class
Microsoft.AnalysisServices Namespace

Return to top