Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AsyncCompletedEventArgs.cs
Go to the documentation of this file.
2
4
6{
7 public bool Cancelled { get; }
8
9 public Exception? Error { get; }
10
11 public object? UserState { get; }
12
13 public AsyncCompletedEventArgs(Exception? error, bool cancelled, object? userState)
14 {
15 Cancelled = cancelled;
16 Error = error;
17 UserState = userState;
18 }
19
21 {
22 if (Error != null)
23 {
25 }
26 if (Cancelled)
27 {
29 }
30 }
31}
AsyncCompletedEventArgs(Exception? error, bool cancelled, object? userState)
static string Async_ExceptionOccurred
Definition SR.cs:20
static string Async_OperationCancelled
Definition SR.cs:18
Definition SR.cs:7