NonHostedEventProvider Class

Represents a non-hosted event provider for a Notification Services application.

Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Declaration
Public NotInheritable Class NonHostedEventProvider
    Inherits NamedSmoObject
public sealed class NonHostedEventProvider : NamedSmoObject
public ref class NonHostedEventProvider sealed : public NamedSmoObject
public final class NonHostedEventProvider extends NamedSmoObject
public final class NonHostedEventProvider extends NamedSmoObject

Hinweise

Non-hosted event providers are external applications that submit event data to a Notification Services application using the EventCollector class, EventLoader class or event-collection stored procedures.

Notification Services does not control or interact with the non-hosted event providers. Therefore, you only provide the event provider name in the application definition so that you can later track and troubleshoot events submitted by the event provider.

Using the methods of this class, you can enable and disable non-hosted event providers to allow them to submit events or prevent them from submitting events.

Inheritance Hierarchy

System.Object
   Microsoft.SqlServer.Management.Smo.SmoObjectBase
     Microsoft.SqlServer.Management.Smo.SqlSmoObject
       Microsoft.SqlServer.Management.Smo.NamedSmoObject
        Microsoft.SqlServer.Management.Nmo.NonHostedEventProvider

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

NonHostedEventProvider Members
Microsoft.SqlServer.Management.Nmo Namespace
HostedEventProvider Class

Andere Ressourcen

Definieren von nicht gehosteten Ereignisanbietern
NonHostedProvider Element (ADF)