public class TokenResponseException : Exception, ISerializableToken response exception which is thrown in case of receiving a token error when an authorization code or an access token is expected.
Implements
ISerializableNamespace
Google.Apis.Auth.OAuth2.ResponsesAssembly
Google.Apis.Auth.dll
Constructors
TokenResponseException(TokenErrorResponse)
public TokenResponseException(TokenErrorResponse error)Constructs a new token response exception from the given error.
| Parameter | |
|---|---|
| Name | Description |
error |
TokenErrorResponse |
TokenResponseException(TokenErrorResponse, Nullable<HttpStatusCode>)
public TokenResponseException(TokenErrorResponse error, HttpStatusCode? statusCode)Constructs a new token response exception from the given error nad optional HTTP status code.
| Parameters | |
|---|---|
| Name | Description |
error |
TokenErrorResponse |
statusCode |
Nullable<HttpStatusCode> |
Properties
Error
public TokenErrorResponse Error { get; }The error information.
| Property Value | |
|---|---|
| Type | Description |
TokenErrorResponse |
|
StatusCode
public HttpStatusCode? StatusCode { get; }HTTP status code of error, or null if unknown.
| Property Value | |
|---|---|
| Type | Description |
Nullable<HttpStatusCode> |
|