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.
Adds an NonHostedEventProvider to the NonHostedEventProviderCollection.
Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Declaration
Public Sub Add ( _
nonHostedEventProvider As NonHostedEventProvider _
)
public void Add (
NonHostedEventProvider nonHostedEventProvider
)
public:
void Add (
NonHostedEventProvider^ nonHostedEventProvider
)
public void Add (
NonHostedEventProvider nonHostedEventProvider
)
public function Add (
nonHostedEventProvider : NonHostedEventProvider
)
Parameter
- nonHostedEventProvider
The NonHostedEventProvider to add to the collection.
Hinweise
If you add application components after creating the instance, you must Update the instance to apply the changes.
Beispiel
The following examples show how to define a non-hosted event provider and add it to the collection of non-hosted event providers for the application:
// Define non-hosted event provider
NonHostedEventProvider nhep =
new NonHostedEventProvider(myApplication, "MyNonHostedEP");
myApplication.NonHostedEventProviders.Add(nhep);
' Define non-hosted event provider
Dim nhep As NonHostedEventProvider = _
New NonHostedEventProvider(myApplication, "MyNonHostedEP")
myApplication.NonHostedEventProviders.Add(nhep)
Threadsicherheit
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Plattformen
Entwicklungsplattformen
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Zielplattforme
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Siehe auch
Verweis
NonHostedEventProviderCollection Class
NonHostedEventProviderCollection Members
Microsoft.SqlServer.Management.Nmo Namespace
Andere Ressourcen
Definieren von Ereignisanbietern
HostedProvider Element (ADF)