是否可以在自托管控制台应用程序中使用ServiceStack Mini Profiler?如果是,我应该在哪里放置探查器启用/禁用代码?在ASP.NET托管的ServiceStack中,它通常位于 Application_BeginRequest 和 Application_EndRequest 方法中。
答案 0 :(得分: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
}
}
}
答案 1 :(得分:0)
public abstract class MyHostBase : AppSelfHostBase
{
this.GlobalRequestFilters.Add(OnBeginOfRequest);
this.GlobalResponseFilters.Add(OnEnfOfRequest);
}