Trace.Events Property

 

Applies To: SQL Server 2016 Preview

Gets the collection of event objects to be captured by a Trace.

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

Syntax

[BrowsableAttribute(false)]
[XmlArrayItemAttribute("Event", typeof(TraceEvent))]
[XmlArrayAttribute]
public TraceEventCollection Events { get; }
public:
[BrowsableAttribute(false)]
[XmlArrayItemAttribute("Event", (TraceEvent^::typeid))]
[XmlArrayAttribute]
property TraceEventCollection^ Events {
    TraceEventCollection^ get();
}
[<BrowsableAttribute(false)>]
[<XmlArrayItemAttribute("Event", typeof(TraceEvent))>]
[<XmlArrayAttribute>]
member Events : TraceEventCollection with get
<BrowsableAttribute(False)>
<XmlArrayItemAttribute("Event", GetType(TraceEvent))>
<XmlArrayAttribute>
Public ReadOnly Property Events As TraceEventCollection

Property Value

Type: Microsoft.AnalysisServices.TraceEventCollection

A TraceEventCollection that contains the collection of event objects to be captured by a Trace.

See Also

Trace Class
Microsoft.AnalysisServices Namespace

Return to top