Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

39 lines
1.5 KiB
C#

using System;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Occurs when a target and source <see langword="DataRow" /> have the same primary key value, and the <see cref="P:System.Data.DataSet.EnforceConstraints" /> property is set to true.</summary>
// Token: 0x0200006A RID: 106
[Token(Token = "0x200006A")]
public class MergeFailedEventArgs : EventArgs
{
/// <summary>Initializes a new instance of a <see cref="T:System.Data.MergeFailedEventArgs" /> class with the <see cref="T:System.Data.DataTable" /> and a description of the merge conflict.</summary>
/// <param name="table">The <see cref="T:System.Data.DataTable" /> object.</param>
/// <param name="conflict">A description of the merge conflict.</param>
// Token: 0x060006B5 RID: 1717 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x60006B5")]
[Address(RVA = "0x9EE320", Offset = "0x9ED320", VA = "0x1809EE320")]
public MergeFailedEventArgs(DataTable table, string conflict)
{
}
/// <summary>Returns a description of the merge conflict.</summary>
/// <returns>A description of the merge conflict.</returns>
// Token: 0x1700011A RID: 282
// (get) Token: 0x060006B6 RID: 1718 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700011A")]
public string Conflict
{
[Token(Token = "0x60006B6")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
[CompilerGenerated]
get
{
return null;
}
}
}
}