C# 클래스 OAuth.AspNet.AuthServer.AuthorizeEndpointRequest

Data object representing the information contained in the query string of an Authorize endpoint request.
파일 보기 프로젝트 열기: XacronDevelopment/oauth-aspnet 1 사용 예제들

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