C# Class Microsoft.AspNetCore.Builder.OAuthAuthorizationServerExtensions

Extension methods to add Authorization Server capabilities to an OWIN pipeline
Datei anzeigen Open project: XacronDevelopment/oauth-aspnet

Public Methods

Method Description
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

Method Details

UseOAuthAuthorizationServer() public static method

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.
return IApplicationBuilder

UseOAuthAuthorizationServer() public static method

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.
return IApplicationBuilder