NotificationStatusCallback Delegate

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

命名空间: Microsoft.SqlServer.NotificationServices
程序集: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)

语法

声明
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 支持委托的使用,但不支持新委托的声明。

参数

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

备注

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.

平台

开发平台

有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。

目标平台

有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。

请参阅

参考

Microsoft.SqlServer.NotificationServices Namespace