private InProcServerTransportController(InProcServerTransportManager transportManager, bool ownsTransportManager) { this._transportManager = transportManager; this._transport = transportManager.NewSession(); this._transportManager.Response += this.OnTransportResponse; this._ownsTransportManager = ownsTransportManager; }
private InProcServerTransportController( InProcServerTransportManager transportManager, bool ownsTransportManager ) { this._transportManager = transportManager; this._transport = transportManager.NewSession(); this._transportManager.Response += this.OnTransportResponse; this._ownsTransportManager = ownsTransportManager; }
internal void SetDestination( InProcServerTransport destination ) { this._destination = destination; destination.Response += this.OnDestinationResponse; }