protected BaseClientTransportManager(Guid runspaceId, PSRemotingCryptoHelper cryptoHelper) : base(cryptoHelper)
 {
     this.syncObject = new object();
     this.runspacePoolInstanceId = runspaceId;
     this.dataToBeSent = new PrioritySendDataCollection();
     this.onDataAvailableCallback = new ReceiveDataCollection.OnDataAvailableCallback(this.OnDataAvailableHandler);
     this.callbackNotificationQueue = new Queue<CallbackNotificationInformation>();
 }
 protected BaseClientTransportManager(Guid runspaceId, PSRemotingCryptoHelper cryptoHelper) : base(cryptoHelper)
 {
     this.syncObject                = new object();
     this.runspacePoolInstanceId    = runspaceId;
     this.dataToBeSent              = new PrioritySendDataCollection();
     this.onDataAvailableCallback   = new ReceiveDataCollection.OnDataAvailableCallback(this.OnDataAvailableHandler);
     this.callbackNotificationQueue = new Queue <CallbackNotificationInformation>();
 }