Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Write() [2/2]

override void System.Net.Http.HttpConnection.RawConnectionStream.Write ( ReadOnlySpan< byte > buffer)
inlinevirtual

Reimplemented from System.IO.Stream.

Definition at line 981 of file HttpConnection.cs.

982 {
983 HttpConnection connection = _connection;
984 if (connection == null)
985 {
987 }
988 if (buffer.Length != 0)
989 {
990 connection.WriteWithoutBuffering(buffer);
991 }
992 }
HttpConnection(HttpConnectionPool pool, Socket socket, Stream stream, TransportContext transportContext)
static string ObjectDisposed_StreamClosed
Definition SR.cs:20
Definition SR.cs:7

References System.Net.Http.HttpContentStream._connection, System.buffer, System.SR.ObjectDisposed_StreamClosed, and System.Net.Http.HttpConnection.WriteWithoutBuffering().