コード例 #1
0
        public static void UseDebugMiddleware(this IAppBuilder app, DebugMiddlewareOptions options = null)
        {
            if (options == null)
            {
                options = new DebugMiddlewareOptions();
            }

            app.Use <DebugMiddleware>(options);
        }
コード例 #2
0
        public DebugMiddleware(AppFunc next, DebugMiddlewareOptions options)
        {
            _next    = next;
            _options = options;

            if (_options.OnIncomingRequest == null)
            {
                _options.OnIncomingRequest = (ctx) => { Debug.WriteLine($"Incoming Requests Reset: {ctx.Request.Path}"); }
            }
            ;
            if (_options.OnOutgoingRequest == null)
            {
                _options.OnOutgoingRequest = (ctx) => { Debug.WriteLine($"Outgoing Requests Reset: {ctx.Request.Path}"); }
            }
            ;
        }