mscorlib(4.0.0.0) API with additions
SemaphoreFullException.cs
4 
5 namespace System.Threading
6 {
9  [ComVisible(false)]
10  [TypeForwardedFrom("System, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")]
11  [__DynamicallyInvokable]
13  {
15  [__DynamicallyInvokable]
17  : base(Environment.GetResourceString("Threading_SemaphoreFullException"))
18  {
19  }
20 
23  [__DynamicallyInvokable]
24  public SemaphoreFullException(string message)
25  : base(message)
26  {
27  }
28 
32  [__DynamicallyInvokable]
33  public SemaphoreFullException(string message, Exception innerException)
34  : base(message, innerException)
35  {
36  }
37 
42  : base(info, context)
43  {
44  }
45  }
46 }
SemaphoreFullException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Threading.SemaphoreFullException class with serialized dat...
Serves as the base class for system exceptions namespace.
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
SemaphoreFullException(string message)
Initializes a new instance of the T:System.Threading.SemaphoreFullException class with a specified er...
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
SemaphoreFullException(string message, Exception innerException)
Initializes a new instance of the T:System.Threading.SemaphoreFullException class with a specified er...
The exception that is thrown when the Overload:System.Threading.Semaphore.Release method is called on...
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
Specifies that the class can be serialized.
SemaphoreFullException()
Initializes a new instance of the T:System.Threading.SemaphoreFullException class with default values...