public static IAppBuilder UseWordPressAuthentication(this IAppBuilder app, WordPressAuthenticationOptions options) { if (app == null) throw new ArgumentNullException(nameof(app)); if (options == null) throw new ArgumentNullException(nameof(options)); app.Use(typeof(WordPressAuthenticationMiddleware), app, options); return app; }
public static IAppBuilder UseWordPressAuthentication(this IAppBuilder app, WordPressAuthenticationOptions options) { if (app == null) { throw new ArgumentNullException("app"); } if (options == null) { throw new ArgumentNullException("options"); } app.Use(typeof(WordPressAuthenticationMiddleware), app, options); return(app); }