NotificationClass.DigestDelivery Property

Gets or sets the digest delivery setting for the notification class.

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

Syntax

'Declaration
Public Property DigestDelivery As Boolean
public bool DigestDelivery { get; set; }
public:
property bool DigestDelivery {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_DigestDelivery ()

/** @property */
public void set_DigestDelivery (boolean value)
public function get DigestDelivery () : boolean

public function set DigestDelivery (value : boolean)

Property Value

true if notifications from the notification class can be combined into digest messages; otherwise, false.

Remarks

Digest delivery combines multiple notifications for the same subscriber into a single notification. The notifications must all be in the same notification batch and also must have the same SubscriberId, SubscriberLocale, DeviceName, and matching values in any fields with a DigestGrouping value of true.

If the DigestDelivery value is true, the NotificationBatchSize property specifies the number of notification batches generated from a single rule firing.

You cannot use both digest delivery and multicast delivery. If using digest delivery, the MulticastDelivery property must be false.

Example

The following examples show how to use digest delivery for notifications generated for a notification class:

flightNotifications.DigestDelivery = true;
flightNotifications.DigestDelivery = True

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
Specifying Digest or Multicast Delivery