Share via


OAuthAuthorizationServerMiddleware Constructor (OwinMiddleware, IAppBuilder, OAuthAuthorizationServerOptions)

 

Authorization Server middleware component which is added to an OWIN pipeline. This constructor is not called by application code directly, instead it is added by calling the the IAppBuilder UseOAuthAuthorizationServer extension method.

Namespace:   Microsoft.Owin.Security.OAuth
Assembly:  Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)

Syntax

public OAuthAuthorizationServerMiddleware(
    OwinMiddleware next,
    IAppBuilder app,
    OAuthAuthorizationServerOptions options
)
public:
OAuthAuthorizationServerMiddleware(
    OwinMiddleware^ next,
    IAppBuilder^ app,
    OAuthAuthorizationServerOptions^ options
)
new : 
        next:OwinMiddleware *
        app:IAppBuilder *
        options:OAuthAuthorizationServerOptions -> OAuthAuthorizationServerMiddleware
Public Sub New (
    next As OwinMiddleware,
    app As IAppBuilder,
    options As OAuthAuthorizationServerOptions
)

Parameters

  • app
    Type: Owin.IAppBuilder

See Also

OAuthAuthorizationServerMiddleware Class
Microsoft.Owin.Security.OAuth Namespace

Return to top