Remarque
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Adds an NonHostedEventProvider to the NonHostedEventProviderCollection.
Espace de noms: Microsoft.SqlServer.Management.Nmo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntaxe
'Déclaration
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
)
Paramètres
- nonHostedEventProvider
The NonHostedEventProvider to add to the collection.
Notes
If you add application components after creating the instance, you must Update the instance to apply the changes.
Exemple
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)
Sécurité des threads
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.
Plateformes
Plateformes de développement
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Plateformes cibles
Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.
Voir aussi
Référence
NonHostedEventProviderCollection Class
NonHostedEventProviderCollection Members
Microsoft.SqlServer.Management.Nmo Namespace
Autres ressources
Définition des fournisseurs d'événements
HostedProvider Element (ADF)