terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ BeginRead()

override IAsyncResult System.Net.ChunkedInputStream.BeginRead ( byte[] buffer,
int offset,
int count,
AsyncCallback cback,
object state )
inlinevirtual

Reimplemented from System.IO.Stream.

Definition at line 43 of file ChunkedInputStream.cs.

44 {
45 while (this.disposed || buffer == null)
46 {
47 }
48 if (!this.no_more_data)
49 {
50 int num = this.decoder.Read(buffer, offset, count);
51 bool wantMore = this.decoder.WantMore;
52 IAsyncResult asyncResult;
53 return asyncResult;
54 }
55 return "offset exceeds the size of buffer";
56 }
class f__AnonymousType0<< Count > j__TPar
int Read(byte[] buffer, int offset, int size)

References System.count, System.Net.ChunkedInputStream.decoder, System.Net.ChunkedInputStream.disposed, j__TPar, System.Net.ChunkedInputStream.no_more_data, System.Net.RequestStream.offset, System.Net.MonoChunkParser.Read(), and System.Net.MonoChunkParser.WantMore.