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

◆ Read() [1/2]

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

Definition at line 270 of file CryptoStream.cs.

271 {
273 return ReadAsyncCore(buffer.AsMemory(offset, count), default(CancellationToken), useAsync: false).GetAwaiter().GetResult();
274 }
async ValueTask< int > ReadAsyncCore(Memory< byte > buffer, CancellationToken cancellationToken, bool useAsync)
void CheckReadArguments(byte[] buffer, int offset, int count)

References System.buffer, System.Security.Cryptography.CryptoStream.CheckReadArguments(), System.count, System.offset, and System.Security.Cryptography.CryptoStream.ReadAsyncCore().