Class AuthorizationRequest

    Definition

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

    The request parameters to be sent to authorization end point.

    public abstract class AuthorizationRequest
    Inheritance
    object
    AuthorizationRequest
    Derived
    CodeGrantAuthorizationRequest
    CodeGrantAuthorizationRequest
    CodeGrantAuthorizationRequest
    CodeGrantAuthorizationRequest
    CodeGrantAuthorizationRequest
    CodeGrantAuthorizationRequest
    CodeGrantAuthorizationRequest
    CodeGrantAuthorizationRequest
    CodeGrantAuthorizationRequest
    CodeGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest
    ImplicitGrantAuthorizationRequest

    Properties

    View Source

    AuthorizationEndpoint

    The authorization end point URL.

    Declaration
    public Uri AuthorizationEndpoint { get; set; }
    Property Value
    Type Description
    System.Uri
    View Source

    ClientSecrets

    Client secret credentials.

    Declaration
    public ClientCredentials ClientSecrets { get; set; }
    Property Value
    Type Description
    ClientCredentials
    View Source

    CustomData

    Custom key-value parameters to be sent to the server

    Declaration
    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>>
    View Source

    RedirectionEndPoint

    The redirection endpoint of the auhorization flow.

    Declaration
    public Uri RedirectionEndPoint { get; set; }
    Property Value
    Type Description
    System.Uri
    View Source

    ResponseType

    The desired response type from the OAuth authorization end point.

    Declaration
    public abstract string ResponseType { get; }
    Property Value
    Type Description
    string
    View Source

    Scopes

    The scope of the access.

    Declaration
    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
    public string State { get; set; }
    Property Value
    Type Description
    string
    View Source

    TokenEndpoint

    The access token end point URL.

    Declaration
    public Uri TokenEndpoint { get; set; }
    Property Value
    Type Description
    System.Uri
    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX