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

◆ Read() [1/2]

override int System.Net.Security.SslStream.Read ( byte[] buffer,
int offset,
int count )
inline

Definition at line 779 of file SslStream.cs.

780 {
783 return ReadAsyncInternal(new SyncReadWriteAdapter(base.InnerStream), new Memory<byte>(buffer, offset, count)).GetAwaiter().GetResult();
784 }
static void ValidateBufferArguments(byte[] buffer, int offset, int count)
Definition Stream.cs:1044

References System.buffer, System.count, System.offset, System.Net.Security.SslStream.ThrowIfExceptionalOrNotAuthenticated(), and System.IO.Stream.ValidateBufferArguments().

Referenced by System.Net.TlsStream.Read().