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

◆ IsCompleted

bool System.IOAsyncResult.IsCompleted
getprotected set

Implements System.IAsyncResult.

Definition at line 92 of file IOAsyncResult.cs.

93 {
94 get
95 {
96 return this.completed;
97 }
98 protected set
99 {
100 Monitor.Enter(this, value);
102 if (manualResetEvent != null)
103 {
104 bool flag = manualResetEvent.Set();
105 return;
106 }
107 long num = 0L;
108 Monitor.Exit(this);
109 if (num == 0L)
110 {
111 return;
112 }
113 throw new OutOfMemoryException();
114 }
115 }
class f__AnonymousType0<< Count > j__TPar
ManualResetEvent wait_handle
static void Exit(object obj)
Definition Monitor.cs:47
static void Enter(object obj)
Definition Monitor.cs:11