예제 #1
0
 public static void Start()
 {
     if(_GatewayServer == null)
     {//webactivatorex sometimes calls start twice.. I think it might call 
         Debug.WriteLine("Calling Start on Gateway");
         _GatewayServer = new GatewayServer();
     }
 
 }
예제 #2
0
 public static void Stop()
 {
     _GatewayServer.Dispose();
     _GatewayServer = null;
 }