Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SemaphoreFullException.cs
Go to the documentation of this file.
3
4namespace System.Threading;
5
7[TypeForwardedFrom("System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : base(SR.Threading_SemaphoreFullException)
12 {
13 }
14
15 public SemaphoreFullException(string? message)
16 : base(message)
17 {
18 }
19
21 : base(message, innerException)
22 {
23 }
24
26 : base(info, context)
27 {
28 }
29}
Definition SR.cs:7
SemaphoreFullException(string? message, Exception? innerException)
SemaphoreFullException(SerializationInfo info, StreamingContext context)