mscorlib(4.0.0.0) API with additions
BarrierPostPhaseException.cs
2 using System.Security;
3 
4 namespace System.Threading
5 {
8  [global::__DynamicallyInvokable]
10  {
12  [global::__DynamicallyInvokable]
14  : this((string)null)
15  {
16  }
17 
20  [global::__DynamicallyInvokable]
21  public BarrierPostPhaseException(Exception innerException)
22  : this(null, innerException)
23  {
24  }
25 
28  [global::__DynamicallyInvokable]
29  public BarrierPostPhaseException(string message)
30  : this(message, null)
31  {
32  }
33 
37  [global::__DynamicallyInvokable]
38  public BarrierPostPhaseException(string message, Exception innerException)
39  : base((message == null) ? SR.GetString("BarrierPostPhaseException") : message, innerException)
40  {
41  }
42 
46  [SecurityCritical]
48  : base(info, context)
49  {
50  }
51  }
52 }
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
BarrierPostPhaseException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Threading.BarrierPostPhaseException class with serialized ...
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
BarrierPostPhaseException(Exception innerException)
Initializes a new instance of the T:System.Threading.BarrierPostPhaseException class with the specifi...
BarrierPostPhaseException()
Initializes a new instance of the T:System.Threading.BarrierPostPhaseException class with a system-su...
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.
The exception that is thrown when the post-phase action of a T:System.Threading.Barrier fails
BarrierPostPhaseException(string message)
Initializes a new instance of the T:System.Threading.BarrierPostPhaseException class with a specified...