IHttpProtocolProvider.ProcessResponse Method

The distributor uses this method to pass an HTTP response from the destination HTTP server to the delivery protocol for processing.

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

语法

声明
Function ProcessResponse ( _
    httpResponseCode As HttpStatusCode, _
    responseBody As String, _
    postSuccess As Boolean _
) As Boolean
bool ProcessResponse (
    HttpStatusCode httpResponseCode,
    string responseBody,
    bool postSuccess
)
bool ProcessResponse (
    HttpStatusCode httpResponseCode, 
    String^ responseBody, 
    bool postSuccess
)
boolean ProcessResponse (
    HttpStatusCode httpResponseCode, 
    String responseBody, 
    boolean postSuccess
)
function ProcessResponse (
    httpResponseCode : HttpStatusCode, 
    responseBody : String, 
    postSuccess : boolean
) : boolean

参数

  • httpResponseCode
    A reference to an HttpStatusCode object that contains the HTTP response code.
  • responseBody
    A String containing the body of the HTTP response.
  • postSuccess
    A Boolean value indicating whether the post was successful from the HTTP delivery perspective. The responseBody parameter may contain a message indicating an application-level failure on the server.

返回值

A Boolean value indicating whether the response indicates the post was successful.

备注

The postSuccess argument indicates whether the delivery succeeded at the HTTP level. This post status might conflict with the actual delivery status. For instance, the post might have succeeded at the HTTP level, but the delivery itself might have failed. The text HTTP response received from the server is supplied in the responseBody argument. You must evaluate the contents of this response to determine the actual delivery status, and then set the return value to indicate success or failure.

The simplest implementation of the ProcessResponse method is to return the postSuccess value that is passed to the ProcessResponse as the return value. This is the case if the HTTP response code is the only success or failure indicator from the remote delivery service (the target of the HTTP post).

示例

For an example of how to implement the ProcessResponse method, see the IHttpProtocolProvider topic.

线程安全

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.

平台

开发平台

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

目标平台

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

请参阅

参考

IHttpProtocolProvider Interface
IHttpProtocolProvider Members
Microsoft.SqlServer.NotificationServices Namespace