4 implementations of BeginWrite
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
130public virtual AsyncCompletionResult BeginWrite(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout, 684public AsyncCompletionResult BeginWrite(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout,
System\ServiceModel\Channels\PipeConnection.cs (1)
328public unsafe AsyncCompletionResult BeginWrite(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout,
System\ServiceModel\Channels\SocketConnection.cs (1)
849public AsyncCompletionResult BeginWrite(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout,
4 references to BeginWrite
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
133return connection.BeginWrite(buffer, offset, size, immediate, timeout, callback, state); 527AsyncCompletionResult writeResult = connection.BeginWrite(buffer, offset, count, immediate, timeout, GetWaitCompletion(), this);
System\ServiceModel\Channels\FramingChannels.cs (2)
96return this.Connection.BeginWrite(SessionEncoder.EndBytes, 0, SessionEncoder.EndBytes.Length, 107return this.Connection.BeginWrite(messageData.Array, messageData.Offset, messageData.Count,