C# 클래스 Microsoft.AspNetCore.Builder.OAuthAuthorizationServerExtensions

Extension methods to add Authorization Server capabilities to an OWIN pipeline
파일 보기 프로젝트 열기: XacronDevelopment/oauth-aspnet

공개 메소드들

메소드 설명
UseOAuthAuthorizationServer ( this app, Action configureOptions ) : IApplicationBuilder

Adds OAuth2 Authorization Server capabilities to an OWIN web application. This middleware performs the request processing for the Authorize and Token endpoints defined by the OAuth2 specification. See also http://tools.ietf.org/html/rfc6749

UseOAuthAuthorizationServer ( this app, OAuthAuthorizationServerOptions options ) : IApplicationBuilder

Adds OAuth2 Authorization Server capabilities to an OWIN web application. This middleware performs the request processing for the Authorize and Token endpoints defined by the OAuth2 specification. See also http://tools.ietf.org/html/rfc6749

메소드 상세

UseOAuthAuthorizationServer() 공개 정적인 메소드

Adds OAuth2 Authorization Server capabilities to an OWIN web application. This middleware performs the request processing for the Authorize and Token endpoints defined by the OAuth2 specification. See also http://tools.ietf.org/html/rfc6749
public static UseOAuthAuthorizationServer ( this app, Action configureOptions ) : IApplicationBuilder
app this The web application builder
configureOptions Action Options which control the behavior of the Authorization Server.
리턴 IApplicationBuilder

UseOAuthAuthorizationServer() 공개 정적인 메소드

Adds OAuth2 Authorization Server capabilities to an OWIN web application. This middleware performs the request processing for the Authorize and Token endpoints defined by the OAuth2 specification. See also http://tools.ietf.org/html/rfc6749
public static UseOAuthAuthorizationServer ( this app, OAuthAuthorizationServerOptions options ) : IApplicationBuilder
app this The web application builder
options OAuth.AspNet.AuthServer.OAuthAuthorizationServerOptions Options which control the behavior of the Authorization Server.
리턴 IApplicationBuilder