public IPhoneSimulatorDebuggerArgs(string appName, IPhoneCommandConnection commandConnection)
 {
     this.appName           = appName;
     this.commandConnection = commandConnection;
 }
 public CommandAsyncResult(IPhoneCommandConnection conn, AsyncCallback callback, object state)
     : base(callback, state)
 {
     this.conn = conn;
 }