AuthorizeEndpointRequest Class

 

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

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

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

public ref class AuthorizeEndpointRequest 

NameDescription
System_CAPS_pubmethodAuthorizeEndpointRequest(IReadableStringCollection^)

Creates a new instance populated with values from the query string parameters.

NameDescription
System_CAPS_pubpropertyClientId

The "client_id" query string parameter of the Authorize request.

System_CAPS_pubpropertyIsAuthorizationCodeGrantType

True if the "response_type" query string parameter is "code". See also, http://tools.ietf.org/html/rfc6749#section-4.1.1

System_CAPS_pubpropertyIsFormPostResponseMode

System_CAPS_pubpropertyIsImplicitGrantType

True if the "response_type" query string parameter is "token". See also, http://tools.ietf.org/html/rfc6749#section-4.2.1

System_CAPS_pubpropertyRedirectUri

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.

System_CAPS_pubpropertyResponseMode

The "response_mode" query string parameter of the Authorize request. Known values are "query", "fragment" and "form_post" See also, http://openid.net/specs/oauth-v2-form-post-response-mode-1_0.html

System_CAPS_pubpropertyResponseType

The "response_type" query string parameter of the Authorize request. Known values are "code" and "token".

System_CAPS_pubpropertyScope

The "scope" query string parameter of the Authorize request. May be absent if the server should use default scopes.

System_CAPS_pubpropertyState

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.

NameDescription
System_CAPS_pubmethodContainsGrantType(String^)

True if the "response_type" query string contains the passed responseType. See also, http://openid.net/specs/oauth-v2-multiple-response-types-1_0.html

System_CAPS_pubmethodEquals(Object^)

(Inherited from Object.)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodToString()

(Inherited from Object.)

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

Return to top
Show: