Ejemplo n.º 1
0
 private static void ResolveWorkerRequestType(HttpWorkerRequest workerRequest)
 {
     if (workerRequest is IIS7WorkerRequest)
     {
         s_WrType = EtwWorkerRequestType.IIS7Integrated;
     }
     else if (workerRequest is ISAPIWorkerRequestInProc)
     {
         s_WrType = EtwWorkerRequestType.InProc;
     }
     else if (workerRequest is ISAPIWorkerRequestOutOfProc)
     {
         s_WrType = EtwWorkerRequestType.OutOfProc;
     }
     else
     {
         s_WrType = EtwWorkerRequestType.Unknown;
     }
 }
 private static void ResolveWorkerRequestType(HttpWorkerRequest workerRequest)
 {
     if (workerRequest is IIS7WorkerRequest)
     {
         s_WrType = EtwWorkerRequestType.IIS7Integrated;
     }
     else if (workerRequest is ISAPIWorkerRequestInProc)
     {
         s_WrType = EtwWorkerRequestType.InProc;
     }
     else if (workerRequest is ISAPIWorkerRequestOutOfProc)
     {
         s_WrType = EtwWorkerRequestType.OutOfProc;
     }
     else
     {
         s_WrType = EtwWorkerRequestType.Unknown;
     }
 }