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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUmadevi S <uma@mono-cvs.ximian.com>2004-05-13 09:49:30 +0400
committerUmadevi S <uma@mono-cvs.ximian.com>2004-05-13 09:49:30 +0400
commit3f468f608419fdbe558b2fb01983fad0be6809a5 (patch)
treeb074138e776bc4fce2eddfdc05cae5443c79f06f
parentd788e9aec7c7636d9488ac34f474f85748dadaf3 (diff)
2004-05-13 Umadevi S (sumadevi@novell.com)
* DbDataPermissionAttribute.cs - Added KeyRestrictions property with a TODO tag svn path=/trunk/mcs/; revision=27230
-rwxr-xr-xmcs/class/System.Data/System.Data.Common/ChangeLog3
-rw-r--r--mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs11
2 files changed, 14 insertions, 0 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/ChangeLog b/mcs/class/System.Data/System.Data.Common/ChangeLog
index 194608f01a7..56156d54796 100755
--- a/mcs/class/System.Data/System.Data.Common/ChangeLog
+++ b/mcs/class/System.Data/System.Data.Common/ChangeLog
@@ -1,3 +1,6 @@
+2004-05-13 Umadevi S (sumadevi@novell.com)
+ * DbDataPermissionAttribute.cs - Added KeyRestrictions property with a TODO tag
+
2004-05-09 Gert Driesen (drieseng@users.sourceforge.net)
* ComparerFactory.cs: marked internal
diff --git a/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs b/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
index a2265dcd585..244a6491c76 100644
--- a/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
+++ b/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
@@ -46,6 +46,17 @@ namespace System.Data.Common {
set { allowBlankPassword = value; }
}
+ [MonoTODO]
+ public string KeyRestrictions {
+ get {
+ throw new NotImplementedException ();
+ }
+
+ set {
+ throw new NotImplementedException ();
+ }
+ }
+
#if NET_1_1
public String ConnectionString {
get { return connectionString; }