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-11-17 16:38:20 +0300
committerSebastien Pouliot <sebastien@ximian.com>2005-11-17 16:38:20 +0300
commitd010802ac1fa407d7fd30ef2b2d8337509367802 (patch)
tree612b5dbf8ca3aec438ae4aa1cdd0a321878e2017 /mcs/class/System/System.Security.AccessControl
parent9302316c661fda49d8e0974028f76d5b8460b6f8 (diff)
2005-11-17 Sebastien Pouliot <sebastien@ximian.com>
* SemaphoreRights.cs: New (2.0). Enum of all the rights applicable to semaphores. * SemaphoreSecurity.cs: New (2.0). Very incomplete - to allow the Semaphore to compile. svn path=/trunk/mcs/; revision=53176
Diffstat (limited to 'mcs/class/System/System.Security.AccessControl')
-rw-r--r--mcs/class/System/System.Security.AccessControl/ChangeLog6
-rw-r--r--mcs/class/System/System.Security.AccessControl/SemaphoreRights.cs48
-rw-r--r--mcs/class/System/System.Security.AccessControl/SemaphoreSecurity.cs45
3 files changed, 99 insertions, 0 deletions
diff --git a/mcs/class/System/System.Security.AccessControl/ChangeLog b/mcs/class/System/System.Security.AccessControl/ChangeLog
new file mode 100644
index 00000000000..a6210881364
--- /dev/null
+++ b/mcs/class/System/System.Security.AccessControl/ChangeLog
@@ -0,0 +1,6 @@
+2005-11-17 Sebastien Pouliot <sebastien@ximian.com>
+
+ * SemaphoreRights.cs: New (2.0). Enum of all the rights applicable to
+ semaphores.
+ * SemaphoreSecurity.cs: New (2.0). Very incomplete - to allow the
+ Semaphore to compile.
diff --git a/mcs/class/System/System.Security.AccessControl/SemaphoreRights.cs b/mcs/class/System/System.Security.AccessControl/SemaphoreRights.cs
new file mode 100644
index 00000000000..79d77763859
--- /dev/null
+++ b/mcs/class/System/System.Security.AccessControl/SemaphoreRights.cs
@@ -0,0 +1,48 @@
+//
+// System.Security.AccessControl.SemaphoreRights enum
+//
+// Author:
+// Sebastien Pouliot <sebastien@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using System.Runtime.InteropServices;
+
+namespace System.Security.AccessControl {
+
+ [ComVisible (false)]
+ [Flags]
+ public enum SemaphoreRights {
+ Modify = 2,
+ Delete = 65536,
+ ReadPermissions = 131072,
+ ChangePermissions = 262144,
+ TakeOwnership = 524288,
+ Synchronize = 1048576,
+ FullControl = 2031619
+ }
+}
+
+#endif
diff --git a/mcs/class/System/System.Security.AccessControl/SemaphoreSecurity.cs b/mcs/class/System/System.Security.AccessControl/SemaphoreSecurity.cs
new file mode 100644
index 00000000000..7360507a609
--- /dev/null
+++ b/mcs/class/System/System.Security.AccessControl/SemaphoreSecurity.cs
@@ -0,0 +1,45 @@
+//
+// System.Security.AccessControl.SemaphoreSecurity class
+//
+// Author:
+// Sebastien Pouliot <sebastien@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using System.Runtime.InteropServices;
+
+namespace System.Security.AccessControl {
+
+ [MonoTODO ("incomplete - required for compilation of Semaphore")]
+ [ComVisible (false)]
+ public sealed class SemaphoreSecurity {
+
+ public SemaphoreSecurity ()
+ {
+ }
+ }
+}
+
+#endif