Ejemplo n.º 1
0
        /// <summary>
        ///     Adds a middleware to the OWIN pipeline that sets the X-Frame-Options 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 UseXfo(this IAppBuilder app, Action <IFluentXFrameOptions> configurer)
        {
            if (app == null)
            {
                throw new ArgumentNullException("app");
            }
            if (configurer == null)
            {
                throw new ArgumentNullException("configurer");
            }

            var options = new XFrameOptions();

            configurer(options);
            return(app.Use(typeof(XfoMiddleware), options));
        }
Ejemplo n.º 2
0
        /// <summary>
        ///     Adds a middleware to the OWIN pipeline that sets the X-Frame-Options 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 UseXfo(this IAppBuilder app, Action<IFluentXFrameOptions> configurer)
        {
            if (app == null) throw new ArgumentNullException("app");
            if (configurer == null) throw new ArgumentNullException("configurer");

            var options = new XFrameOptions();
            configurer(options);
            return app.Use(typeof (XfoMiddleware), options);
        }