public static IAppBuilder UseBufferAuthentication(this IAppBuilder app, BufferAuthenticationOptions options) { if (app == null) throw new ArgumentNullException(nameof(app)); if (options == null) throw new ArgumentNullException(nameof(options)); app.Use(typeof(BufferAuthenticationMiddleware), app, options); return app; }
public static IAppBuilder UseBufferAuthentication(this IAppBuilder app, BufferAuthenticationOptions options) { if (app == null) { throw new ArgumentNullException(nameof(app)); } if (options == null) { throw new ArgumentNullException(nameof(options)); } app.Use(typeof(BufferAuthenticationMiddleware), app, options); return(app); }