public void Process(ISemanticProcessor proc, IMembrane membrane, HtmlPageRoute context)
        {
            bool handled = proc.ServiceManager.Get<IWebFileResponse>().ProcessFileRequest(context.Context);

            if (!handled)
            {
                RouteNotFoundResponse(proc, context.Context);
            }
        }
示例#2
0
        public void Process(ISemanticProcessor proc, IMembrane membrane, HtmlPageRoute context)
        {
            bool handled = proc.ServiceManager.Get <IWebFileResponse>().ProcessFileRequest(context.Context);

            if (!handled)
            {
                RouteNotFoundResponse(proc, context.Context);
            }
        }