internal IPhoneTransportConnection(StreamCommandConnection connection, Stream stream)
 {
     this.connection = connection;
     this.stream     = stream;
 }
 public CommandAsyncResult(StreamCommandConnection conn, AsyncCallback callback, object state)
     : base(callback, state)
 {
     this.conn = conn;
 }
 public StreamCommandConnectionDebuggerArgs(string appName, StreamCommandConnection commandConnection)
 {
     this.appName      = appName;
     CommandConnection = commandConnection;
 }