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
senderobjectThe source of the HTTP response, which can be null.
responseIResponseThe HTTP response information received by the browser.