コード例 #1
0
 protected BaseTransportManager(PSRemotingCryptoHelper cryptoHelper)
 {
     this.cryptoHelper            = cryptoHelper;
     this.fragmentor              = new System.Management.Automation.Remoting.Fragmentor(0x8000, cryptoHelper);
     this.recvdData               = new PriorityReceiveDataCollection(this.fragmentor, this is BaseClientTransportManager);
     this.onDataAvailableCallback = new System.Management.Automation.Remoting.ReceiveDataCollection.OnDataAvailableCallback(this.OnDataAvailableCallback);
 }
コード例 #2
0
 protected BaseTransportManager(PSRemotingCryptoHelper cryptoHelper)
 {
     this.cryptoHelper            = cryptoHelper;
     this.fragmentor              = new Fragmentor(32768, cryptoHelper);
     this.recvdData               = new PriorityReceiveDataCollection(this.fragmentor, this is BaseClientTransportManager);
     this.onDataAvailableCallback = new ReceiveDataCollection.OnDataAvailableCallback(this.OnDataAvailableCallback);
 }
コード例 #3
0
ファイル: BaseTransportManager.cs プロジェクト: nickchal/pash
 protected BaseTransportManager(PSRemotingCryptoHelper cryptoHelper)
 {
     this.cryptoHelper = cryptoHelper;
     this.fragmentor = new System.Management.Automation.Remoting.Fragmentor(0x8000, cryptoHelper);
     this.recvdData = new PriorityReceiveDataCollection(this.fragmentor, this is BaseClientTransportManager);
     this.onDataAvailableCallback = new System.Management.Automation.Remoting.ReceiveDataCollection.OnDataAvailableCallback(this.OnDataAvailableCallback);
 }