Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DuplicateWaitObjectException.cs
Go to the documentation of this file.
3
4namespace System;
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : base(SR.Arg_DuplicateWaitObjectException)
12 {
13 base.HResult = -2146233047;
14 }
15
17 : base(SR.Arg_DuplicateWaitObjectException, parameterName)
18 {
19 base.HResult = -2146233047;
20 }
21
22 public DuplicateWaitObjectException(string? parameterName, string? message)
23 : base(message, parameterName)
24 {
25 base.HResult = -2146233047;
26 }
27
29 : base(message, innerException)
30 {
31 base.HResult = -2146233047;
32 }
33
35 : base(info, context)
36 {
37 }
38}
DuplicateWaitObjectException(string? parameterName, string? message)
DuplicateWaitObjectException(SerializationInfo info, StreamingContext context)
DuplicateWaitObjectException(string? message, Exception? innerException)
Definition SR.cs:7