Definition
- Namespace:
- Tizen.Account.OAuth2
- Assembly:
- Tizen.Account.OAuth2.dll
Abstract wrapper class containing OAuth 2.0 request parameters for requesting an access token.
[Obsolete]
public abstract class TokenRequest
- Inheritance
-
- Derived
-
Properties
View Source
AuthenticationScheme
Client authentication scheme. Default is Basic
Declaration
[Obsolete]
public AuthenticationScheme AuthenticationScheme { get; set; }
Property Value
Declaration
[Obsolete]
public ClientCredentials ClientSecrets { get; set; }
Property Value
View Source
CustomData
Custom key-value parameters to be sent to the server
Declaration
[Obsolete]
public IEnumerable<KeyValuePair<string, string>> CustomData { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<T><System.Collections.Generic.KeyValuePair<TKey, TValue><string, string>> |
|
Declaration
[Obsolete]
public abstract string GrantType { get; }
Property Value
View Source
RedirectionEndPoint
The redirection endpoint of the auhorization flow.
Declaration
[Obsolete]
public Uri RedirectionEndPoint { get; set; }
Property Value
Type |
Description |
System.Uri |
|
Declaration
[Obsolete]
public IEnumerable<string> Scopes { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<T><string> |
|
View Source
State
The client's state which is maintained between request and response.
Declaration
[Obsolete]
public string State { get; set; }
Property Value
View Source
TokenEndpoint
The access token end point URL.
Declaration
[Obsolete]
public Uri TokenEndpoint { get; set; }
Property Value
Type |
Description |
System.Uri |
|