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 /mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
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
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs11
1 files changed, 11 insertions, 0 deletions
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; }