NonHostedEventProviderCollection.Add Method
Adds an NonHostedEventProvider to the NonHostedEventProviderCollection.
Spazio dei nomi: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Sintassi
'Dichiarazione
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
)
Parametri
- nonHostedEventProvider
The NonHostedEventProvider to add to the collection.
Osservazioni
If you add application components after creating the instance, you must Update the instance to apply the changes.
Esempio
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)
Thread Safety
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.
Piattaforme
Piattaforme di sviluppo
Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.
Piattaforme di destinazione
Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.
Vedere anche
Riferimento
NonHostedEventProviderCollection Class
NonHostedEventProviderCollection Members
Microsoft.SqlServer.Management.Nmo Namespace
Altre risorse
Definizione di provider di eventi
HostedProvider Element (ADF)