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:
authorSebastien Pouliot <sebastien@ximian.com>2005-06-22 22:35:41 +0400
committerSebastien Pouliot <sebastien@ximian.com>2005-06-22 22:35:41 +0400
commit16a79daec35fe443f7b3c664a8ff97f5ab625810 (patch)
treeb0a02a7eb05885d9e3c6e7319e1f320c2d44d6d4 /mcs/class/corlib/System.Security/ChangeLog
parentd04686431badfe6889b1b6b3a524a92d2cb1c25b (diff)
2005-06-22 Sebastien Pouliot <sebastien@ximian.com>
* CodeAccessPermission.cs: Fix Unrestricted PermitOnly (which is like a no-op). Speed up Assert if Unrestricted. * HostSecurityManager.cs: Updated FIXME description. * PermissionSet.cs: Remove Copy() of the permission set when non-CAS permissions are used (replaced by an array of bools). Completed Assert support by re-using the array of bools. Updated TODO descriptions. * SecurityException.cs: Added evidence (if available) in the ToString description of the exception. * SecurityManager.cs: Reworked CheckExecutionRights to get the correct behavior. svn path=/trunk/mcs/; revision=46378
Diffstat (limited to 'mcs/class/corlib/System.Security/ChangeLog')
-rwxr-xr-xmcs/class/corlib/System.Security/ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/class/corlib/System.Security/ChangeLog b/mcs/class/corlib/System.Security/ChangeLog
index 8c2b69fe9fa..13d84f659ae 100755
--- a/mcs/class/corlib/System.Security/ChangeLog
+++ b/mcs/class/corlib/System.Security/ChangeLog
@@ -1,3 +1,16 @@
+2005-06-22 Sebastien Pouliot <sebastien@ximian.com>
+
+ * CodeAccessPermission.cs: Fix Unrestricted PermitOnly (which is like
+ a no-op). Speed up Assert if Unrestricted.
+ * HostSecurityManager.cs: Updated FIXME description.
+ * PermissionSet.cs: Remove Copy() of the permission set when non-CAS
+ permissions are used (replaced by an array of bools). Completed Assert
+ support by re-using the array of bools. Updated TODO descriptions.
+ * SecurityException.cs: Added evidence (if available) in the ToString
+ description of the exception.
+ * SecurityManager.cs: Reworked CheckExecutionRights to get the correct
+ behavior.
+
2005-06-20 Sebastien Pouliot <sebastien@ximian.com>
* CodeAccessPermission.cs: Removed redundant and unrequired TODO.