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:
authorGert Driesen <drieseng@users.sourceforge.net>2004-05-20 23:15:27 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2004-05-20 23:15:27 +0400
commit8663c97122d8ff9f7ff09375269e6db66053f50f (patch)
tree633af3025dbf5444b4151d1f595ea9d375fafa95 /mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
parenta72f4f118c4de207418e669b7721ddcfb4877f60 (diff)
* DbDataPermissionAttribute.cs: change AllowMultiple and
Inherited to match .NET svn path=/trunk/mcs/; revision=27771
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs b/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
index 244a6491c76..0132544434e 100644
--- a/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
+++ b/mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs
@@ -13,7 +13,10 @@ using System;
using System.Security.Permissions;
namespace System.Data.Common {
- [AttributeUsage (AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method)]
+ [AttributeUsage (AttributeTargets.Assembly | AttributeTargets.Class |
+ AttributeTargets.Struct | AttributeTargets.Constructor |
+ AttributeTargets.Method, AllowMultiple=true,
+ Inherited=false)]
[Serializable]
public abstract class DBDataPermissionAttribute : CodeAccessSecurityAttribute
{