29 lines
935 B
C#
29 lines
935 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data
|
|
{
|
|
/// <summary>Indicates the action that occurs when a <see cref="T:System.Data.ForeignKeyConstraint" /> is enforced.</summary>
|
|
// Token: 0x0200007C RID: 124
|
|
[Token(Token = "0x200007C")]
|
|
public enum Rule
|
|
{
|
|
/// <summary>No action taken on related rows.</summary>
|
|
// Token: 0x04000296 RID: 662
|
|
[Token(Token = "0x4000296")]
|
|
None,
|
|
/// <summary>Delete or update related rows. This is the default.</summary>
|
|
// Token: 0x04000297 RID: 663
|
|
[Token(Token = "0x4000297")]
|
|
Cascade,
|
|
/// <summary>Set values in related rows to <see langword="DBNull" />.</summary>
|
|
// Token: 0x04000298 RID: 664
|
|
[Token(Token = "0x4000298")]
|
|
SetNull,
|
|
/// <summary>Set values in related rows to the value contained in the <see cref="P:System.Data.DataColumn.DefaultValue" /> property.</summary>
|
|
// Token: 0x04000299 RID: 665
|
|
[Token(Token = "0x4000299")]
|
|
SetDefault
|
|
}
|
|
}
|