C# 클래스 Owin.Security.OAuth.Introspection.OAuthIntrospectionEvents

Allows customization of introspection handling within the middleware.
파일 보기 프로젝트 열기: aspnet-contrib/AspNet.Security.OAuth.Extensions

공개 메소드들

메소드 설명
CreateTicket ( CreateTicketContext context ) : System.Threading.Tasks.Task

Invoked when a ticket is to be created from an introspection response.

RequestTokenIntrospection ( RequestTokenIntrospectionContext context ) : System.Threading.Tasks.Task

Invoked when a token is to be sent to the authorization server for introspection.

RetrieveToken ( RetrieveTokenContext context ) : System.Threading.Tasks.Task

Invoked when a token is to be parsed from a newly-received request.

ValidateToken ( ValidateTokenContext context ) : System.Threading.Tasks.Task

Invoked when a token is to be validated, before final processing.

메소드 상세

CreateTicket() 공개 메소드

Invoked when a ticket is to be created from an introspection response.
public CreateTicket ( CreateTicketContext context ) : System.Threading.Tasks.Task
context CreateTicketContext
리턴 System.Threading.Tasks.Task

RequestTokenIntrospection() 공개 메소드

Invoked when a token is to be sent to the authorization server for introspection.
public RequestTokenIntrospection ( RequestTokenIntrospectionContext context ) : System.Threading.Tasks.Task
context RequestTokenIntrospectionContext
리턴 System.Threading.Tasks.Task

RetrieveToken() 공개 메소드

Invoked when a token is to be parsed from a newly-received request.
public RetrieveToken ( RetrieveTokenContext context ) : System.Threading.Tasks.Task
context RetrieveTokenContext
리턴 System.Threading.Tasks.Task

ValidateToken() 공개 메소드

Invoked when a token is to be validated, before final processing.
public ValidateToken ( ValidateTokenContext context ) : System.Threading.Tasks.Task
context ValidateTokenContext
리턴 System.Threading.Tasks.Task