Exemplo n.º 1
0
 public static IAppBuilder UseWindowsAuthentication(this IAppBuilder app, WindowsAuthenticationOptions options)
 {
     app.Use(typeof(WindowsAuthenticationMiddleware), app, options);
     return(app.UseStageMarker(PipelineStage.Authenticate));
 }
 public static IAppBuilder UseWindowsAuthentication(this IAppBuilder app, WindowsAuthenticationOptions options)
 {
     app.Use(typeof(WindowsAuthenticationMiddleware), app, options);
     return app.UseStageMarker(PipelineStage.Authenticate);
 }