mscorlib(4.0.0.0) API with additions
SemaphoreFullException.cs
1
using
System
.
Runtime
.
CompilerServices
;
2
using
System
.
Runtime
.
InteropServices
;
3
using
System
.
Runtime
.
Serialization
;
4
5
namespace
System.Threading
6
{
8
[
Serializable
]
9
[ComVisible(
false
)]
10
[TypeForwardedFrom(
"System, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089"
)]
11
[__DynamicallyInvokable]
12
public
class
SemaphoreFullException
:
SystemException
13
{
15
[__DynamicallyInvokable]
16
public
SemaphoreFullException
()
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
41
protected
SemaphoreFullException
(
SerializationInfo
info,
StreamingContext
context)
42
: base(info, context)
43
{
44
}
45
}
46
}
System.Threading.SemaphoreFullException.SemaphoreFullException
SemaphoreFullException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Threading.SemaphoreFullException class with serialized dat...
Definition:
SemaphoreFullException.cs:41
System.SystemException
Serves as the base class for system exceptions namespace.
Definition:
SystemException.cs:9
System.Runtime.InteropServices
Definition:
_Activator.cs:1
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.Runtime.CompilerServices
Definition:
AccessedThroughPropertyAttribute.cs:3
System.Threading.SemaphoreFullException.SemaphoreFullException
SemaphoreFullException(string message)
Initializes a new instance of the T:System.Threading.SemaphoreFullException class with a specified er...
Definition:
SemaphoreFullException.cs:24
System.Environment
Provides information about, and means to manipulate, the current environment and platform....
Definition:
Environment.cs:21
System.Threading.SemaphoreFullException.SemaphoreFullException
SemaphoreFullException(string message, Exception innerException)
Initializes a new instance of the T:System.Threading.SemaphoreFullException class with a specified er...
Definition:
SemaphoreFullException.cs:33
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.Threading.SemaphoreFullException
The exception that is thrown when the Overload:System.Threading.Semaphore.Release method is called on...
Definition:
SemaphoreFullException.cs:12
System.Runtime.Serialization.SerializationInfo
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Definition:
SerializationInfo.cs:12
System.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.Threading.SemaphoreFullException.SemaphoreFullException
SemaphoreFullException()
Initializes a new instance of the T:System.Threading.SemaphoreFullException class with default values...
Definition:
SemaphoreFullException.cs:16
System.Threading
Definition:
_IOCompletionCallback.cs:3
All cs
System.Threading
SemaphoreFullException.cs
Generated by
1.8.15