3 implementations of Write
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
93public virtual void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout, BufferManager bufferManager) 628public void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout, BufferManager bufferManager)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (1)
315public void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout, BufferManager bufferManager)
3 references to Write
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BufferedConnection.cs (1)
179Connection.Write(buffer, offset, size, true, timeout, bufferManager);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (1)
95_connection.Write(buffer, offset, size, immediate, timeout, bufferManager);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (1)
84this.Connection.Write(messageData.Array, messageData.Offset, messageData.Count, !allowOutputBatching,