是否可以在自托管控制台应用程序中使用 ServiceStack Mini Profiler?如果是,我应该在哪里放置探查器启用/禁用代码?在 ASP.NET 托管的 ServiceStack 中,它通常位于Application_BeginRequest和Application_EndRequest方法中。
问问题
534 次
2 回答
0
你可以这样做:
namespace ConsoleApplication1 {
class Program {
static void Main(string[] args) {
// enable here
// your code
// disable here
}
}
}
或者像这样在构造函数和析构函数中:
namespace ConsoleApplication1 {
class Program {
Program() {
// enable here
}
~Program(){
// disable here
}
static void Main(string[] args) {
// your code
}
}
}
于 2013-05-07T16:51:55.910 回答
0
public abstract class MyHostBase : AppSelfHostBase
{
this.GlobalRequestFilters.Add(OnBeginOfRequest);
this.GlobalResponseFilters.Add(OnEnfOfRequest);
}
于 2014-10-27T10:01:34.727 回答