Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AcceptRejectRule.cs « System.Data « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c4481175a6c5d57e51308fdfb716d521f214c7d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// System.Data.AcceptRejectRule.cs
//
// Author:
//   Christopher Podurgiel (cpodurgiel@msn.com)
//
// (C) Chris Podurgiel
//

namespace System.Data
{
	
	/// <summary>
	/// Determines the action that occurs when 
	/// the AcceptChanges or RejectChanges method 
	/// is invoked on a DataTable with a ForeignKeyConstraint.
	/// </summary>
	[Serializable]
	public enum AcceptRejectRule
	{
		Cascade = 1,
		None = 0
	}

}