Interface IHttpResponseHandler
Defines a contract for handling HTTP responses received for a request by the browser.
public interface IHttpResponseHandler
Methods
HandleResponse(object?, IResponse)
Handles the action to be taken when an HTTP response is received.
void HandleResponse(object? sender, IResponse response)
Parameters
sender
objectThe source of the HTTP response, which can be null.
response
IResponseThe HTTP response information received by the browser.