Class AuthorizationResponse
Definition
- Assembly:
- Tizen.Account.OAuth2.dll
The response containing authroization code from the authorization server.
public class AuthorizationResponse : IDisposable
- Inheritance
-
objectAuthorizationResponse
- Implements
-
System.IDisposable
Properties
View SourceCode
The authroization code.
Declaration
public string Code { get; }
Property Value
Type | Description |
---|---|
string |
State
The state parameter present in authorization request.
Declaration
public string State { get; }
Property Value
Type | Description |
---|---|
string |
Remarks
The value can be null depending on the server specifications.
Methods
View SourceDispose()
Releases any unmanaged resources used by this object.
Declaration
public void Dispose()
Dispose(bool)
Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | If true, disposes any disposable objects. If false, does not dispose disposable objects. |
~AuthorizationResponse()
Destructor of the AuthorizationResponse class.
Declaration
protected ~AuthorizationResponse()
GetCustomValue(string)
Custom key-value parameter received from service provider
Declaration
public string GetCustomValue(string key)
Parameters
Type | Name | Description |
---|---|---|
string | key |
Returns
Type | Description |
---|---|
string |
Remarks
The return value can be null depending on the server specifications.
Implements
System.IDisposable