在我Application_Start
的我调用了一个 RegisterRoutes 方法,我调用了以下方法:
// Do not process any static files
routes.IgnoreRoute(
"{*staticfile}", new { staticfile = @".*\.(jpg|gif|jpeg|png|js|css|htm|html|htc)$" }
);
此外,我配置了MiniProfiler,我运行如下:
protected void Application_BeginRequest()
{
MiniProfiler.Start();
var profiler = MiniProfiler.Current;
using (profiler.Step("Application_BeginRequest"))
{
}
}
现在,当我启动我的网站时,我看到正在分析的图像:
对我来说,这似乎表明我的 IgnoreRoute 工作不正常,或者 Image 不应该达到 MiniProfiler 状态。我在这方面是不正确的,还是我做错了什么?