Class AuthorizationResponse

Definition

Namespace:
Tizen.Account.OAuth2
Assembly:
Tizen.Account.OAuth2.dll

The response containing authroization code from the authorization server.

C#
Copy
public class AuthorizationResponse : IDisposable
Inheritance
object
AuthorizationResponse
Implements
System.IDisposable

Properties

View Source

Code

The authroization code.

Declaration
C#
Copy
public string Code { get; }
Property Value
Type Description
string
View Source

State

The state parameter present in authorization request.

Declaration
C#
Copy
public string State { get; }
Property Value
Type Description
string
Remarks

The value can be null depending on the server specifications.

Methods

View Source

Dispose()

Releases any unmanaged resources used by this object.

Declaration
C#
Copy
public void Dispose()
View Source

Dispose(bool)

Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.

Declaration
C#
Copy
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.

View Source

~AuthorizationResponse()

Destructor of the AuthorizationResponse class.

Declaration
C#
Copy
protected ~AuthorizationResponse()
View Source

GetCustomValue(string)

Custom key-value parameter received from service provider

Declaration
C#
Copy
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