Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
HostExecutionContext.cs
Go to the documentation of this file.
1namespace System.Threading;
2
4{
5 protected internal object? State { get; set; }
6
8 {
9 }
10
12 {
13 State = state;
14 }
15
17 {
18 return new HostExecutionContext(State);
19 }
20
21 public void Dispose()
22 {
23 Dispose(disposing: true);
24 }
25
26 public virtual void Dispose(bool disposing)
27 {
28 }
29}
virtual HostExecutionContext CreateCopy()