48 lines
2.3 KiB
C#
48 lines
2.3 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel.Design
|
|
{
|
|
/// <summary>The exception that is thrown when an attempt to check out a file that is checked into a source code management program is canceled or fails.</summary>
|
|
// Token: 0x020001B8 RID: 440
|
|
[Token(Token = "0x20001B8")]
|
|
[Serializable]
|
|
public class CheckoutException : ExternalException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class with no associated message or error code.</summary>
|
|
// Token: 0x06000C03 RID: 3075 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000C03")]
|
|
[Address(RVA = "0xC515B0", Offset = "0xC505B0", VA = "0x180C515B0")]
|
|
public CheckoutException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class with the specified message and error code.</summary>
|
|
/// <param name="message">A message describing the exception.</param>
|
|
/// <param name="errorCode">The error code to pass.</param>
|
|
// Token: 0x06000C04 RID: 3076 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000C04")]
|
|
[Address(RVA = "0xC515C0", Offset = "0xC505C0", VA = "0x180C515C0")]
|
|
public CheckoutException(string message, int errorCode)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class using the specified serialization data and context.</summary>
|
|
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used for deserialization.</param>
|
|
/// <param name="context">The destination to be used for deserialization.</param>
|
|
// Token: 0x06000C05 RID: 3077 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000C05")]
|
|
[Address(RVA = "0x71ABC0", Offset = "0x719BC0", VA = "0x18071ABC0")]
|
|
protected CheckoutException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.CheckoutException" /> class that specifies that the check out was canceled. This field is read-only.</summary>
|
|
// Token: 0x04000648 RID: 1608
|
|
[Token(Token = "0x4000648")]
|
|
public static readonly CheckoutException Canceled;
|
|
}
|
|
}
|