Пример #1
0
 public ClientSingletonConnectionReader(IConnection connection, StreamedConnectionPoolHelper connectionPoolHelper,
                                        IConnectionOrientedTransportFactorySettings settings)
     : base(connection, 0, 0, connectionPoolHelper.RemoteSecurity, settings, null)
 {
     Contract.Assert(connectionPoolHelper != null);
     _connectionPoolHelper = connectionPoolHelper;
 }
 public StreamedFramingAsyncRequest(StreamedFramingRequestChannel channel, AsyncCallback callback, object state)
     : base(callback, state)
 {
     this.channel = channel;
     this.connectionPoolHelper = new StreamedConnectionPoolHelper(channel);
 }
 public StreamedFramingRequest(StreamedFramingRequestChannel channel)
 {
     this.channel = channel;
     this.connectionPoolHelper = new StreamedConnectionPoolHelper(channel);
 }
 public ClientSingletonConnectionReader(IConnection connection, StreamedConnectionPoolHelper connectionPoolHelper,
     IConnectionOrientedTransportFactorySettings settings)
     : base(connection, 0, 0, connectionPoolHelper.RemoteSecurity, settings, null)
 {
     this.connectionPoolHelper = connectionPoolHelper;
 }
Пример #5
0
 public StreamedFramingAsyncRequest(StreamedFramingRequestChannel channel)
 {
     _channel = channel;
     _connectionPoolHelper = new StreamedConnectionPoolHelper(channel);
 }
 public StreamedFramingAsyncRequest(StreamedFramingRequestChannel channel, AsyncCallback callback, object state)
     : base(callback, state)
 {
     this.channel = channel;
     this.connectionPoolHelper = new StreamedConnectionPoolHelper(channel);
 }
 public StreamedFramingRequest(StreamedFramingRequestChannel channel)
 {
     this.channel = channel;
     this.connectionPoolHelper = new StreamedConnectionPoolHelper(channel);
 }
Пример #8
0
 public StreamedFramingAsyncRequest(StreamedFramingRequestChannel channel)
 {
     _channel = channel;
     _connectionPoolHelper = new StreamedConnectionPoolHelper(channel);
 }