C# Класс OAuth.AspNet.AuthServer.AuthorizeEndpointRequest

Data object representing the information contained in the query string of an Authorize endpoint request.
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
AddParameter void

Открытые методы

Метод Описание
AuthorizeEndpointRequest ( IQueryCollection parameters ) : System

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

ContainsGrantType ( string responseType ) : bool

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

Приватные методы

Метод Описание
AddParameter ( string name, string value ) : void

Описание методов

AuthorizeEndpointRequest() публичный Метод

Creates a new instance populated with values from the query string parameters.
public AuthorizeEndpointRequest ( IQueryCollection parameters ) : System
parameters IQueryCollection Query string parameters from a request.
Результат System

ContainsGrantType() публичный Метод

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
public ContainsGrantType ( string responseType ) : bool
responseType string The responseType that is expected within the "response_type" query string
Результат bool