NotificationStatusCallback Delegate

Used by delivery protocols to return delivery status information back to the distributor.

Namespace: Microsoft.SqlServer.NotificationServices
Assembly: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)

Syntax

'Declaration
Public Delegate Sub NotificationStatusCallback ( _
    ParamArray status As NotificationStatus() _
)
public delegate void NotificationStatusCallback (
    params NotificationStatus[] status
)
public delegate void NotificationStatusCallback (
    ... array<NotificationStatus^>^ status
)
/** @delegate */
public delegate void NotificationStatusCallback (
    NotificationStatus[] status
)
JScript supports the use of delegates, but not the declaration of new ones.

Parameters

  • status
    An array of NotificationStatus objects that contain notification delivery status information.

Remarks

The NotificationStatusCallback delegate allows a delivery protocol to return notification delivery status information to the distributor.

For more information about how to use this delegate in a custom delivery protocol, see IDeliveryProtocol.

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

Microsoft.SqlServer.NotificationServices Namespace