コード例 #1
0
 public ProcessApplicationHost(string binFolder, PortManager portManager)
 {
     this._portManager = portManager;
     this._port        = portManager.ClaimNext();
     this._binFolder   = binFolder;
     this.LaunchHost();
 }
コード例 #2
0
		public ProcessApplicationHost(string binFolder, PortManager portManager) {
			this._portManager = portManager;
			this._port = portManager.ClaimNext();
			this._binFolder = binFolder;
			this.LaunchHost();
		}
コード例 #3
0
 static ProcessHostingModel()
 {
     KillOrphanedHostProcesses();
     SetupRemoting(portManager.ClaimNext());
 }