Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns the EventInfo object from the collection.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
index As Object _
) As EventInfo
Get
'Usage
Dim instance As EventInfos
Dim index As Object
Dim value As EventInfo
value = instance(index)
public EventInfo this[
Object index
] { get; }
public:
property EventInfo^ default[Object^ index] {
EventInfo^ get (Object^ index);
}
member Item : EventInfo
JScript unterstützt die Verwendung indizierter Eigenschaften, aber nicht die Deklaration neuer Eigenschaften.
Parameter
- index
Typ: System.Object
The name, description, ID, or index of the EventInfo object to return.
Eigenschaftswert
Typ: Microsoft.SqlServer.Dts.Runtime.EventInfo
An EventInfo object.
Hinweise
If the call to Contains method returns true, you can access the specified element in the collection by using the syntax EventInfos[index]. If the Contains returns false, this property throws an exception. In C#, this property is the indexer for the EventInfos class.