Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
BeginEndAwaitableAdapter.cs
Go to the documentation of this file.
2
3internal sealed class BeginEndAwaitableAdapter : RendezvousAwaitable<IAsyncResult>
4{
5 public static readonly AsyncCallback Callback = delegate(IAsyncResult asyncResult)
6 {
7 BeginEndAwaitableAdapter beginEndAwaitableAdapter = (BeginEndAwaitableAdapter)asyncResult.AsyncState;
8 beginEndAwaitableAdapter.SetResult(asyncResult);
9 };
10
12 {
13 base.RunContinuationsAsynchronously = false;
14 }
15}