3 implementations of Write
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
88public virtual void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout) 614public void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (1)
308public void Write(byte[] buffer, int offset, int size, bool immediate, TimeSpan timeout)
9 references to Write
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\BufferedConnection.cs (3)
65Connection.Write(_writeBuffer, 0, _pendingWriteSize, false, timeout); 175Connection.Write(buffer, offset, size, true, timeout); 195Connection.Write(buffer, offset, size, false, timeoutHelper.RemainingTime());
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
90_connection.Write(buffer, offset, size, immediate, timeout); 375_connection.Write(buffer, offset, count, this.Immediate, TimeoutHelper.FromMilliseconds(this.WriteTimeout));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (4)
54Connection.Write(SessionEncoder.EndBytes, 0, SessionEncoder.EndBytes.Length, true, timeout); 287connection.Write(preamble.Array, preamble.Offset, preamble.Count, true, timeoutHelper.RemainingTime()); 301connection.Write(ClientDuplexEncoder.PreambleEndBytes, 0, ClientDuplexEncoder.PreambleEndBytes.Length, true, timeoutHelper.RemainingTime()); 535connection.Write(encodedUpgrade.EncodedBytes, 0, encodedUpgrade.EncodedBytes.Length, true, timeoutHelper.RemainingTime());