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
AsyncCallback.cs
Go to the documentation of this file.
1using System;
3
4namespace System
5{
6 // Token: 0x0200008C RID: 140
8 public sealed class AsyncCallback : MulticastDelegate
9 {
10 // Token: 0x06000402 RID: 1026 RVA: 0x0000C5F4 File Offset: 0x0000A7F4
11 public AsyncCallback(object @object, IntPtr method)
12 {
14 this.m_target = @object;
16 this.method_code = this;
17 }
18
19 // Token: 0x06000403 RID: 1027 RVA: 0x0000C654 File Offset: 0x0000A854
20 public void Invoke(IAsyncResult ar)
21 {
24 IntPtr method = this.method;
25 }
26
27 // Token: 0x06000404 RID: 1028 RVA: 0x0000207A File Offset: 0x0000027A
28 public IAsyncResult BeginInvoke(IAsyncResult ar, AsyncCallback callback, object @object)
29 {
30 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
31 }
32
33 // Token: 0x06000405 RID: 1029 RVA: 0x0000C678 File Offset: 0x0000A878
34 public void EndInvoke(IAsyncResult result)
35 {
36 }
37 }
38}
class f__AnonymousType0<< Count > j__TPar
AsyncCallback(object @object, IntPtr method)
IAsyncResult BeginInvoke(IAsyncResult ar, AsyncCallback callback, object @object)
void EndInvoke(IAsyncResult result)
void Invoke(IAsyncResult ar)
IntPtr method_code
Definition Delegate.cs:386
IntPtr invoke_impl
Definition Delegate.cs:371