CookieAuthenticationMiddleware Constructor (OwinMiddleware, IAppBuilder, CookieAuthenticationOptions)
Initializes a CookieAuthenticationMiddleware.
Namespace: Microsoft.Owin.Security.Cookies
Assembly: Microsoft.Owin.Security.Cookies (in Microsoft.Owin.Security.Cookies.dll)
Syntax
public CookieAuthenticationMiddleware(
OwinMiddleware next,
IAppBuilder app,
CookieAuthenticationOptions options
)
public:
CookieAuthenticationMiddleware(
OwinMiddleware^ next,
IAppBuilder^ app,
CookieAuthenticationOptions^ options
)
new :
next:OwinMiddleware *
app:IAppBuilder *
options:CookieAuthenticationOptions -> CookieAuthenticationMiddleware
Public Sub New (
next As OwinMiddleware,
app As IAppBuilder,
options As CookieAuthenticationOptions
)
Parameters
next
Type: Microsoft.Owin.OwinMiddlewareThe next middleware in the OWIN pipeline to invoke
app
Type: Owin.IAppBuilderThe OWIN application
options
Type: Microsoft.Owin.Security.Cookies.CookieAuthenticationOptionsConfiguration options for the middleware
See Also
CookieAuthenticationMiddleware Class
Microsoft.Owin.Security.Cookies Namespace
Return to top