AuthorizeEndpointRequest Class

Data object representing the information contained in the query string of an Authorize endpoint request.

Inheritance Hierarchy

System.Object
  Microsoft.Owin.Security.OAuth.Messages.AuthorizeEndpointRequest

Namespace:  Microsoft.Owin.Security.OAuth.Messages
Assembly:  Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)

Syntax

'Declaration
Public Class AuthorizeEndpointRequest
'Usage
Dim instance As AuthorizeEndpointRequest
public class AuthorizeEndpointRequest
public ref class AuthorizeEndpointRequest
type AuthorizeEndpointRequest =  class end
public class AuthorizeEndpointRequest

The AuthorizeEndpointRequest type exposes the following members.

Constructors

  Name Description
Public method AuthorizeEndpointRequest Creates a new instance populated with values from the query string parameters.

Top

Properties

  Name Description
Public property ClientId The "client_id" query string parameter of the Authorize request.
Public property IsAuthorizationCodeGrantType True if the "response_type" query string parameter is "code". See also, http://tools.ietf.org/html/rfc6749#section-4.1.1
Public property IsImplicitGrantType True if the "response_type" query string parameter is "token". See also, http://tools.ietf.org/html/rfc6749#section-4.2.1
Public property RedirectUri The "redirect_uri" query string parameter of the Authorize request. May be absent if the server should use the redirect uri known to be registered to the client id.
Public property ResponseType The "response_type" query string parameter of the Authorize request. Known values are "code" and "token".
Public property Scope The "scope" query string parameter of the Authorize request. May be absent if the server should use default scopes.
Public property State The "scope" query string parameter of the Authorize request. May be absent if the client does not require state to be included when returning to the RedirectUri.

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.Owin.Security.OAuth.Messages Namespace