NotificationClass.NotificationClassProtocols Property

Gets the collection of delivery protocols used by the notification class.

Espacio de nombres: Microsoft.SqlServer.Management.Nmo
Ensamblado: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Sintaxis

'Declaración
Public ReadOnly Property NotificationClassProtocols As NotificationClassProtocolCollection
public NotificationClassProtocolCollection NotificationClassProtocols { get; }
public:
property NotificationClassProtocolCollection^ NotificationClassProtocols {
    NotificationClassProtocolCollection^ get ();
}
/** @property */
public NotificationClassProtocolCollection get_NotificationClassProtocols ()
public function get NotificationClassProtocols () : NotificationClassProtocolCollection

Valor de propiedad

A NotificationClassProtocolCollection object that represents the delivery protocols for the notification class.

Notas

The NotificationClassProtocolCollection contains one or more delivery protocols used by the notification class. Each notification class must have at least one delivery protocol used to deliver notifications.

If you add or delete a Protocols element, updating the application deletes and re-creates the notification class to which it corresponds. This includes dropping and re-creating the Microsoft SQL Server tables used by this notification class. Any data existing in the original SQL Server tables is permanently deleted.

Ejemplo

The following examples show how to define a File delivery protocol and add it to the collection of delivery protocols for a notification class:

flightNotifications.NotificationClassProtocols.Add(fileProtocol);
flightNotifications.NotificationClassProtocols.Add(fileProtocol)

Seguridad para subprocesos

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.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

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

Otros recursos

Definir clases de notificación
Configurar protocolos de entrega
Protocols Element (ADF)