* DbDataPermissionAttribute.cs: change AllowMultiple and
authorGert Driesen <drieseng@users.sourceforge.net>
Thu, 20 May 2004 19:15:27 +0000 (19:15 -0000)
committerGert Driesen <drieseng@users.sourceforge.net>
Thu, 20 May 2004 19:15:27 +0000 (19:15 -0000)
Inherited to match .NET

svn path=/trunk/mcs/; revision=27771

mcs/class/System.Data/System.Data.Common/ChangeLog
mcs/class/System.Data/System.Data.Common/DbDataPermissionAttribute.cs

index f99da17b924d78ed6c8ed4883a9b36341d7507d4..ee2a893a0b465cdf2bd9ac5b9fc681657bd7b952 100755 (executable)
@@ -1,3 +1,8 @@
+2004-05-20  Gert Driesen (drieseng@users.sourceforge.net)
+
+        *  DbDataPermissionAttribute.cs: change AllowMultiple and
+        Inherited to match .NET
+
 2004-05-19  Boris Kirzner  <borisk@mainsoft.com>
        * Datacontainer.cs : CompareValues reviewed. set_Item and get_Item of null and DBNull values in case of DataContainers
        for primitive types reviewed. Added check for null values when reading from IDataRecord.
index 244a6491c76e5a0c21a491b270082ec20517272f..0132544434e706ebcaa6d6e73f9189322a6ffb14 100644 (file)
@@ -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
        {