Suche…
Einführung
Was ist Katana? Katana besteht aus einer Reihe von Open-Source-Komponenten für die Erstellung und das Hosting von OWIN-basierten Webanwendungen, die von der Microsoft Open Technologies Group verwaltet werden. Katana stellt eine Implementierung der OWIN-Spezifikation bereit und wird in immer mehr ASP.NET-Projektvorlagen verwendet . Darüber hinaus bietet Katana eine Vielzahl von gebrauchsfertigen Middleware-Komponenten, die in einer OWIN-basierten Anwendung verwendet werden können.
Beispiel
Grundlegende KatanaConsole-Anwendung
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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow