C# Класс Microsoft.AspNetCore.Builder.OAuthAuthorizationServerExtensions

Extension methods to add Authorization Server capabilities to an OWIN pipeline
Показать файл Открыть проект

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

Метод Описание
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