Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
RunWorkerCompletedEventArgs.cs
Go to the documentation of this file.
2
4{
5 private readonly object _result;
6
7 public object? Result
8 {
9 get
10 {
12 return _result;
13 }
14 }
15
16 [EditorBrowsable(EditorBrowsableState.Never)]
17 public new object? UserState => base.UserState;
18
19 public RunWorkerCompletedEventArgs(object? result, Exception? error, bool cancelled)
20 : base(error, cancelled, null)
21 {
22 _result = result;
23 }
24}
RunWorkerCompletedEventArgs(object? result, Exception? error, bool cancelled)