AuthorizeEndpointRequest Class
Data object representing the information contained in the query string of an Authorize endpoint request.
Assembly: Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)
| Name | Description | |
|---|---|---|
![]() | AuthorizeEndpointRequest(IReadableStringCollection^) | Creates a new instance populated with values from the query string parameters. |
| Name | Description | |
|---|---|---|
![]() | ClientId | The "client_id" query string parameter of the Authorize request. |
![]() | IsAuthorizationCodeGrantType | True if the "response_type" query string parameter is "code". See also, http://tools.ietf.org/html/rfc6749#section-4.1.1 |
![]() | IsFormPostResponseMode | |
![]() | IsImplicitGrantType | True if the "response_type" query string parameter is "token". See also, http://tools.ietf.org/html/rfc6749#section-4.2.1 |
![]() | 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. |
![]() | ResponseMode | 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 |
![]() | ResponseType | The "response_type" query string parameter of the Authorize request. Known values are "code" and "token". |
![]() | Scope | The "scope" query string parameter of the Authorize request. May be absent if the server should use default scopes. |
![]() | 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. |
| Name | Description | |
|---|---|---|
![]() | ContainsGrantType(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 |
![]() | Equals(Object^) | (Inherited from Object.) |
![]() | Finalize() | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetType() | (Inherited from Object.) |
![]() | MemberwiseClone() | (Inherited from Object.) |
![]() | ToString() | (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.


