Share via


NonHostedEventProviderCollection.Add Method

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
)

Parameters

Remarks

If you add application components after creating the instance, you must Update the instance to apply the changes.

Example

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.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

See Also

Reference

NonHostedEventProviderCollection Class
NonHostedEventProviderCollection Members
Microsoft.SqlServer.Management.Nmo Namespace

Other Resources

Defining Event Providers
HostedProvider Element (ADF)