mscorlib(4.0.0.0) API with additions
CheckoutException.cs
4 
6 {
9  [HostProtection(SecurityAction.LinkDemand, SharedState = true)]
10  [PermissionSet(SecurityAction.LinkDemand, Name = "FullTrust")]
11  [PermissionSet(SecurityAction.InheritanceDemand, Name = "FullTrust")]
13  {
15  public static readonly CheckoutException Canceled = new CheckoutException(SR.GetString("CHECKOUTCanceled"), -2147467260);
16 
19  {
20  }
21 
24  public CheckoutException(string message)
25  : base(message)
26  {
27  }
28 
32  public CheckoutException(string message, int errorCode)
33  : base(message, errorCode)
34  {
35  }
36 
41  : base(info, context)
42  {
43  }
44 
48  public CheckoutException(string message, Exception innerException)
49  : base(message, innerException)
50  {
51  }
52  }
53 }
CheckoutException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.ComponentModel.Design.CheckoutException class using the sp...
CheckoutException(string message, int errorCode)
Initializes a new instance of the T:System.ComponentModel.Design.CheckoutException class with the spe...
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
SecurityAction
Specifies the security actions that can be performed using declarative security.
CheckoutException()
Initializes a new instance of the T:System.ComponentModel.Design.CheckoutException class with no asso...
The exception that is thrown when an attempt to check out a file that is checked into a source code m...
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
The base exception type for all COM interop exceptions and structured exception handling (SEH) except...
static readonly CheckoutException Canceled
Initializes a new instance of the T:System.ComponentModel.Design.CheckoutException class that specifi...
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
CheckoutException(string message)
Initializes a new instance of the T:System.ComponentModel.Design.CheckoutException class with the spe...
Specifies that the class can be serialized.
CheckoutException(string message, Exception innerException)
Initializes a new instance of the T:System.ComponentModel.Design.CheckoutException class with the spe...