Class AuthorizationRequest
Obsolete
Definition
- Namespace:
- Tizen.Account.OAuth2
- Assembly:
- Tizen.Account.OAuth2.dll
- API Level:
- 3
The request parameters to be sent to authorization end point.
[Obsolete]
public abstract class AuthorizationRequest
- Inheritance
-
AuthorizationRequest
- Derived
Properties
View SourceAuthorizationEndpoint
Obsolete
The authorization end point URL.
Declaration
[Obsolete]
public Uri AuthorizationEndpoint { get; set; }
Property Value
Type | Description |
---|---|
Uri |
API Level: 3
View SourceClientSecrets
Obsolete
Client secret credentials.
Declaration
[Obsolete]
public ClientCredentials ClientSecrets { get; set; }
Property Value
Type | Description |
---|---|
ClientCredentials |
API Level: 3
View SourceCustomData
Obsolete
Custom key-value parameters to be sent to the server
Declaration
[Obsolete]
public IEnumerable<KeyValuePair<string, string>> CustomData { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<KeyValuePair<String, String>> |
API Level: 3
View SourceRedirectionEndPoint
Obsolete
The redirection endpoint of the auhorization flow.
Declaration
[Obsolete]
public Uri RedirectionEndPoint { get; set; }
Property Value
Type | Description |
---|---|
Uri |
API Level: 3
View SourceResponseType
Obsolete
The desired response type from the OAuth authorization end point.
Declaration
[Obsolete]
public abstract string ResponseType { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceScopes
Obsolete
The scope of the access.
Declaration
[Obsolete]
public IEnumerable<string> Scopes { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<String> |
API Level: 3
View SourceState
Obsolete
The client's state which is maintained between request and response.
Declaration
[Obsolete]
public string State { get; set; }
Property Value
Type | Description |
---|---|
String |
API Level: 3
View SourceTokenEndpoint
Obsolete
The access token end point URL.
Declaration
[Obsolete]
public Uri TokenEndpoint { get; set; }
Property Value
Type | Description |
---|---|
Uri |