Example #1
0
        /// <summary>
        ///     Adds a middleware to the OWIN pipeline that sets the X-Xss-Protection header.
        /// </summary>
        /// <param name="app">The <see cref="IAppBuilder" /> to which the middleware is added.</param>
        /// <param name="configurer">An <see cref="Action" /> that configures the options for the middleware.</param>
        /// <returns>The <see cref="IAppBuilder" /> supplied in the app parameter.</returns>
        public static IAppBuilder UseXXssProtection(this IAppBuilder app, Action <IFluentXXssProtectionOptions> configurer)
        {
            if (app == null)
            {
                throw new ArgumentNullException("app");
            }
            if (configurer == null)
            {
                throw new ArgumentNullException("configurer");
            }

            var options = new XXssProtectionOptions();

            configurer(options);
            return(app.Use(typeof(XXssMiddleware), options));
        }
        /// <summary>
        ///     Adds a middleware to the OWIN pipeline that sets the X-Xss-Protection header.
        /// </summary>
        /// <param name="app">The <see cref="IAppBuilder" /> to which the middleware is added.</param>
        /// <param name="configurer">An <see cref="Action" /> that configures the options for the middleware.</param>
        /// <returns>The <see cref="IAppBuilder" /> supplied in the app parameter.</returns>
        public static IAppBuilder UseXXssProtection(this IAppBuilder app, Action<IFluentXXssProtectionOptions> configurer)
        {
            if (app == null) throw new ArgumentNullException("app");
            if (configurer == null) throw new ArgumentNullException("configurer");

            var options = new XXssProtectionOptions();
            configurer(options);
            return app.Use(typeof (XXssMiddleware), options);
        }