コード例 #1
0
ファイル: Extensions.cs プロジェクト: druttka/made-with-love
 public static void MakeWithLove(this IAppBuilder app, MadeWithLoveOptions options = null)
 {
     app.Use <MadeWithLoveMiddleware>(options);
 }
コード例 #2
0
 public MadeWithLoveMiddleware(OwinMiddleware next, MadeWithLoveOptions options = null)
     : base(next)
 {
     this.options = options ?? new MadeWithLoveOptions();
 }