Implemented interface member:
method
BeginRead
System.ServiceModel.Channels.IConnection.BeginRead(System.Int32, System.Int32, System.TimeSpan, System.Threading.WaitCallback, System.Object)
2 overrides of BeginRead
System.ServiceModel (2)
System\ServiceModel\Channels\Connection.cs (1)
223
public override AsyncCompletionResult
BeginRead
(int offset, int size, TimeSpan timeout, WaitCallback callback, object state)
System\ServiceModel\Channels\TracingConnection.cs (1)
159
public override AsyncCompletionResult
BeginRead
(int offset, int size, TimeSpan timeout, System.Threading.WaitCallback callback, object state)
2 references to BeginRead
System.ServiceModel (2)
System\ServiceModel\Channels\Connection.cs (1)
237
return base.
BeginRead
(offset, size, timeout, callback, state);
System\ServiceModel\Channels\TracingConnection.cs (1)
164
return base.
BeginRead
(offset, size, timeout, TracingConnection.Callback, completion);