public interface IHttpExceptionHandlerException handler is invoked when an exception is thrown during a HTTP request.
Namespace
Google.Apis.HttpAssembly
Google.Apis.Core.dll
Methods
HandleExceptionAsync(HandleExceptionArgs)
Task<bool> HandleExceptionAsync(HandleExceptionArgs args)Handles an exception thrown when sending a HTTP request.
A simple rule must be followed, if you modify the request object in a way that the exception can be
resolved, you must return true.
| Parameter | |
|---|---|
| Name | Description |
args |
HandleExceptionArgsHandle exception argument which properties such as the request, exception, current failed try. |
| Returns | |
|---|---|
| Type | Description |
Taskbool |
Whether this handler has made a change that requires the request to be resent. |