This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,47 @@
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: 0x020001BC RID: 444
[Token(Token = "0x20001BC")]
[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: 0x06000C19 RID: 3097 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C19")]
[Address(RVA = "0x4E7160", Offset = "0x4E5F60", VA = "0x1804E7160")]
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: 0x06000C1A RID: 3098 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1A")]
[Address(RVA = "0x4E7170", Offset = "0x4E5F70", VA = "0x1804E7170")]
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: 0x06000C1B RID: 3099 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000C1B")]
[Address(RVA = "0x4E7140", Offset = "0x4E5F40", VA = "0x1804E7140")]
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: 0x04000655 RID: 1621
[Token(Token = "0x4000655")]
public static readonly CheckoutException Canceled;
}
}