EventsProvider.EventInfos Property

 

Applies To: SQL Server 2016 Preview

Returns a collection of EventInfo objects. This field is read-only.

Namespace:   Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Syntax

public EventInfos EventInfos { get; }
public:
property EventInfos^ EventInfos {
    EventInfos^ get();
}
member EventInfos : EventInfos with get
Public ReadOnly Property EventInfos As EventInfos

Property Value

Type: Microsoft.SqlServer.Dts.Runtime.EventInfos

Returns an EventInfos collection.

Remarks

The EventInfos collection is used to hold custom events and events that you want the task to raise during execution. When creating a custom task, you use this class to add your own custom events to the runtime.

See Also

EventsProvider Class
Microsoft.SqlServer.Dts.Runtime Namespace

Return to top