Class ResourceOwnerPwdCredentialsTokenRequest

Definition

Namespace:
Tizen.Account.OAuth2
Assembly:
Tizen.Account.OAuth2.dll
API Level:
3

The class contains request parameters for retreiving access token in Resource Owner Password Credentials Grant flow.

C#
Copy
public class ResourceOwnerPwdCredentialsTokenRequest : TokenRequest
Inheritance
ResourceOwnerPwdCredentialsTokenRequest

Constructors

View Source

ResourceOwnerPwdCredentialsTokenRequest()

The constructor

Declaration
C#
Copy
public ResourceOwnerPwdCredentialsTokenRequest()
API Level: 3

Properties

View Source

GrantType

The grant type

Declaration
C#
Copy
public override string GrantType { get; }
Property Value
Type Description
System.String
Overrides
API Level: 3
View Source

Password

The resource owner password

Declaration
C#
Copy
public string Password { get; set; }
Property Value
Type Description
System.String
API Level: 3
View Source

Username

The resource owner username

Declaration
C#
Copy
public string Username { get; set; }
Property Value
Type Description
System.String
API Level: 3