This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Represents the exception that is thrown when a duplicate database object name is encountered during an add operation in a <see cref="T:System.Data.DataSet" /> -related object.</summary>
// Token: 0x0200001C RID: 28
[Token(Token = "0x200001C")]
[Serializable]
public class DuplicateNameException : DataException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class with serialization information.</summary>
/// <param name="info">The data that is required to serialize or deserialize an object.</param>
/// <param name="context">Description of the source and destination of the specified serialized stream.</param>
// Token: 0x06000149 RID: 329 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000149")]
[Address(RVA = "0xA228A0", Offset = "0xA218A0", VA = "0x180A228A0")]
protected DuplicateNameException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class.</summary>
// Token: 0x0600014A RID: 330 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600014A")]
[Address(RVA = "0xA22940", Offset = "0xA21940", VA = "0x180A22940")]
public DuplicateNameException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DuplicateNameException" /> class with the specified string.</summary>
/// <param name="s">The string to display when the exception is thrown.</param>
// Token: 0x0600014B RID: 331 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600014B")]
[Address(RVA = "0xA22920", Offset = "0xA21920", VA = "0x180A22920")]
public DuplicateNameException(string s)
{
}
}
}