4 implementations of Write
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
146public virtual void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout, BufferManager bufferManager) 779public void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout, BufferManager bufferManager)
System\ServiceModel\Channels\PipeConnection.cs (1)
1251public unsafe void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout, BufferManager bufferManager)
System\ServiceModel\Channels\SocketConnection.cs (1)
1077public void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout, BufferManager bufferManager)
3 references to Write
System.ServiceModel (3)
System\ServiceModel\Channels\BufferedConnection.cs (1)
189Connection.Write(buffer, offset, size, true, timeout, bufferManager);
System\ServiceModel\Channels\Connection.cs (1)
148connection.Write(buffer, offset, size, immediate, timeout, bufferManager);
System\ServiceModel\Channels\FramingChannels.cs (1)
90this.Connection.Write(messageData.Array, messageData.Offset, messageData.Count, !allowOutputBatching,