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

ForeignKeyConstraint.cs « System.Data « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 591398afa9c6d0f93a8ed5c8da7e7b0118f4c687 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//
// System.Data.ForeignKeyConstraint.cs
//
// Author:
//   Daniel Morgan <danmorg@sc.rr.com>
//
// (C) 2002 Daniel Morgan
//

using System;
using System.Collections;
using System.ComponentModel;
using System.Runtime.InteropServices;

namespace System.Data
{

	[Serializable]
	public class ForeignKeyConstraint : Constraint {

		#region Constructors

		[MonoTODO]
		public ForeignKeyConstraint(DataColumn parentColumn, 
			DataColumn childColumn) {
		}

		[MonoTODO]
		public ForeignKeyConstraint(DataColumn[] parentColumns,
			DataColumn[] childColumns) {
		}

		[MonoTODO]
		public ForeignKeyConstraint(string constraintName,
			DataColumn parentColumn, DataColumn childColumn) {
		}

		[MonoTODO]
		public ForeignKeyConstraint(string constraintName,
			DataColumn[] parentColumns, 
			DataColumn[] childColumns) {
		}

		[MonoTODO]
		public ForeignKeyConstraint(string constraintName,
			string parentTableName,	string[] parentColumnNames,
			string[] childColumnNames, 
			AcceptRejectRule acceptRejectRule, Rule deleteRule,
			Rule updateRule) {
		}

		#endregion // Constructors

		#region Properites

		public virtual AcceptRejectRule AcceptRejectRule {
			[MonoTODO]
			get {
				throw new NotImplementedException ();
			}
			
			[MonoTODO]
			set {
				throw new NotImplementedException ();
			}
		}

		public virtual DataColumn[] Columns {
			[MonoTODO]
			get {
				throw new NotImplementedException ();
			}
		}

		public virtual Rule DeleteRule {
			[MonoTODO]
			get {
				throw new NotImplementedException ();
			}
			
			[MonoTODO]
			set {
				throw new NotImplementedException ();
			}
		}

		public virtual DataColumn[] RelatedColumns {
			[MonoTODO]
			get {	
				throw new NotImplementedException ();
			}
		}

		public virtual DataTable RelatedTable {
			[MonoTODO]
			get {
				throw new NotImplementedException ();
			}
		}

		public override DataTable Table {
			[MonoTODO]
			get {
				throw new NotImplementedException ();
			}
		}

		public virtual Rule UpdateRule {
			[MonoTODO]
			get {
				throw new NotImplementedException ();
			}
			
			[MonoTODO]
			set {
				throw new NotImplementedException ();
			}
		}

		#endregion // Properties

		#region Methods

		[MonoTODO]
		public override bool Equals(object key) {
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public override int GetHashCode() {
			throw new NotImplementedException ();
		}

		#endregion // Methods
	}

}