在 MVC mini profiler 中,如何提取步骤时序供自己使用?例如,不只是在左上角的小框中显示它们,例如,考虑到我有步骤
using (var step = MiniProfiler.Current.Step("Foo"))
{
_fooService.Foo();
}
using (var step = MiniProfiler.Current.Step("Bar"))
{
_barService.Bar();
}
decimal fooTiming = what goes here?
decimal barTiming = what goes here?
我怎样才能提取和阅读上述步骤的时间,以便我可以用这些数字做任何我想做的事情?