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:
-rw-r--r--mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs12
1 files changed, 12 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 e88b6282010..a331853beff 100644
--- a/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
+++ b/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
@@ -21,6 +21,8 @@ namespace System.Data.Common {
SecurityAction securityAction;
bool allowBlankPassword;
+ KeyRestrictionBehavior keyRestrictionBehavior;
+ String connectionString;
#endregion // Fields
@@ -42,6 +44,16 @@ namespace System.Data.Common {
set { allowBlankPassword = value; }
}
+ public String ConnectionString {
+ get { return connectionString; }
+ set { connectionString = value; }
+ }
+
+ public KeyRestrictionBehavior KeyRestrictionBehavior {
+ get { return keyRestrictionBehavior; }
+ set { keyRestrictionBehavior = value; }
+ }
+
#endregion // Properties
#region // Methods