Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AbandonedMutexException.cs
Go to the documentation of this file.
3
4namespace System.Threading;
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
10 private int _mutexIndex = -1;
11
12 private Mutex _mutex;
13
14 public Mutex? Mutex => _mutex;
15
16 public int MutexIndex => _mutexIndex;
17
19 : base(SR.Threading_AbandonedMutexException)
20 {
21 base.HResult = -2146233043;
22 }
23
24 public AbandonedMutexException(string? message)
25 : base(message)
26 {
27 base.HResult = -2146233043;
28 }
29
30 public AbandonedMutexException(string? message, Exception? inner)
31 : base(message, inner)
32 {
33 base.HResult = -2146233043;
34 }
35
37 : base(SR.Threading_AbandonedMutexException)
38 {
39 base.HResult = -2146233043;
41 }
42
43 public AbandonedMutexException(string? message, int location, WaitHandle? handle)
44 : base(message)
45 {
46 base.HResult = -2146233043;
48 }
49
50 public AbandonedMutexException(string? message, Exception? inner, int location, WaitHandle? handle)
51 : base(message, inner)
52 {
53 base.HResult = -2146233043;
55 }
56
58 : base(info, context)
59 {
60 }
61
67}
Definition SR.cs:7
AbandonedMutexException(SerializationInfo info, StreamingContext context)
AbandonedMutexException(string? message, Exception? inner)
void SetupException(int location, WaitHandle handle)
AbandonedMutexException(string? message, int location, WaitHandle? handle)
AbandonedMutexException(int location, WaitHandle? handle)
AbandonedMutexException(string? message, Exception? inner, int location, WaitHandle? handle)