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
BaseInvokableCall.cs
Go to the documentation of this file.
1using System;
3
4namespace UnityEngine.Events
5{
6 // Token: 0x0200015C RID: 348
7 internal abstract class BaseInvokableCall
8 {
9 // Token: 0x06000681 RID: 1665 RVA: 0x0000B90C File Offset: 0x00009B0C
11 {
12 }
13
14 // Token: 0x06000682 RID: 1666 RVA: 0x0000B920 File Offset: 0x00009B20
15 protected BaseInvokableCall(object target, MethodInfo function)
16 {
17 if (function == null)
18 {
19 return;
20 }
21 bool isStatic = function.IsStatic;
22 if (target != null)
23 {
24 return;
25 }
26 }
27
28 // Token: 0x06000683 RID: 1667
29 public abstract void Invoke(object[] args);
30
31 // Token: 0x06000684 RID: 1668 RVA: 0x0000B944 File Offset: 0x00009B44
32 protected static void ThrowOnInvalidArg<T>(object arg)
33 {
34 if (arg == null || arg != null)
35 {
36 return;
37 }
39 }
40
41 // Token: 0x06000685 RID: 1669 RVA: 0x0000B964 File Offset: 0x00009B64
42 protected static bool AllowInvoke(Delegate @delegate)
43 {
44 int num = 1;
45 if (num != 0)
46 {
47 }
48 if (num == 0)
49 {
50 }
51 bool flag;
52 return flag;
53 }
54
55 // Token: 0x06000686 RID: 1670
56 public abstract bool Find(object targetObj, MethodInfo method);
57 }
58}
class f__AnonymousType0<< Count > j__TPar
static void ThrowOnInvalidArg< T >(object arg)
static bool AllowInvoke(Delegate @delegate)
BaseInvokableCall(object target, MethodInfo function)
bool Find(object targetObj, MethodInfo method)