Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ISynchronizeInvoke.cs
Go to the documentation of this file.
2
3public interface ISynchronizeInvoke
4{
5 bool InvokeRequired { get; }
6
7 IAsyncResult BeginInvoke(Delegate method, object?[]? args);
8
9 object? EndInvoke(IAsyncResult result);
10
11 object? Invoke(Delegate method, object?[]? args);
12}
object? Invoke(Delegate method, object?[]? args)
IAsyncResult BeginInvoke(Delegate method, object?[]? args)
object? EndInvoke(IAsyncResult result)