サーチ…


前書き

カタナとは何ですか? Katanaは、Microsoft Open Technologies Groupによって管理されているOWINベースのWebアプリケーションを構築およびホスティングするためのオープンソースコンポーネントのセットです.Katanaは、OWIN仕様の実装を提供し、実際には、ますます多くのASP.NETプロジェクトテンプレート。さらに、Katanaは、すぐに使用できるミドルウェアコンポーネントを幅広く提供しており、OWINベースのアプリケーションで使用する準備ができています。

Basic KatanaConsoleアプリケーション

namespace KatanaConsole
{
    // use an alias for the OWIN AppFunc:
    using AppFunc = Func<IDictionary<string, object>, Task>;
 
    class Program
    {
        static void Main(string[] args)
        {
            WebApp.Start<Startup>("http://localhost:8080");
            Console.WriteLine("Server Started; Press enter to Quit");
            Console.ReadLine();
        }
    }
 
    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            var middleware = new Func<AppFunc, AppFunc>(MyMiddleWare);
            app.Use(middleware);
        }
 
        public AppFunc MyMiddleWare(AppFunc next)
        {
            AppFunc appFunc = async (IDictionary<string, object> environment) =>
            {
                // Do something with the incoming request:
                var response = environment["owin.ResponseBody"] as Stream;
                using (var writer = new StreamWriter(response))
                {
                    await writer.WriteAsync("<h1>Hello from My First Middleware</h1>");
                }
                // Call the next Middleware in the chain:
                await next.Invoke(environment);
            };
            return appFunc;
        }
    }
}


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow