NotificationClass.NotificationClassProtocols Property

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

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

Syntax

'Declaration
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

Property Value

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

Remarks

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.

Example

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)

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

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

Other Resources

Defining Notification Classes
Configuring Delivery Protocols
Protocols Element (ADF)