Merge pull request #378 from miraclespain/master
[mono.git] / mcs / class / corlib / System.Security.AccessControl / EventWaitHandleSecurity.cs
1 //
2 // System.Security.AccessControl.EventWaitHandleSecurity implementation
3 //
4 // Authors:
5 //      Dick Porter  <dick@ximian.com>
6 //      Atsushi Enomoto  <atsushi@ximian.com>
7 //      James Bellinger  <jfb@zer7.com>
8 //
9 // Copyright (C) 2005-2007 Novell, Inc (http://www.novell.com)
10 // Copyright (C) 2012      James Bellinger
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System.Runtime.InteropServices;
33 using System.Security.Principal;
34
35 namespace System.Security.AccessControl
36 {
37         public sealed class EventWaitHandleSecurity : NativeObjectSecurity
38         {
39                 public EventWaitHandleSecurity ()
40                         : base (false, ResourceType.KernelObject)
41                 {
42                 }
43
44                 internal EventWaitHandleSecurity (SafeHandle handle,
45                                                   AccessControlSections includeSections)
46                         : base (false, ResourceType.KernelObject, handle, includeSections)
47                 {
48                 }
49                 
50                 public override Type AccessRightType {
51                         get { return typeof (EventWaitHandleRights); }
52                 }
53                 
54                 public override Type AccessRuleType {
55                         get { return typeof (EventWaitHandleAccessRule); }
56                 }
57                 
58                 public override Type AuditRuleType {
59                         get { return typeof (EventWaitHandleAuditRule); }
60                 }
61                 
62                 public override AccessRule AccessRuleFactory (IdentityReference identityReference, int accessMask,
63                                                               bool isInherited, InheritanceFlags inheritanceFlags,
64                                                               PropagationFlags propagationFlags, AccessControlType type)
65                 {
66                         return new EventWaitHandleAccessRule (identityReference, (EventWaitHandleRights) accessMask, type);
67                 }
68                 
69                 public void AddAccessRule (EventWaitHandleAccessRule rule)
70                 {
71                         AddAccessRule ((AccessRule)rule);
72                 }
73                 
74                 public bool RemoveAccessRule (EventWaitHandleAccessRule rule)
75                 {
76                         return RemoveAccessRule ((AccessRule)rule);
77                 }
78                 
79                 public void RemoveAccessRuleAll (EventWaitHandleAccessRule rule)
80                 {
81                         RemoveAccessRuleAll ((AccessRule)rule);
82                 }
83                 
84                 public void RemoveAccessRuleSpecific (EventWaitHandleAccessRule rule)
85                 {
86                         RemoveAccessRuleSpecific ((AccessRule)rule);
87                 }
88                 
89                 public void ResetAccessRule (EventWaitHandleAccessRule rule)
90                 {
91                         ResetAccessRule ((AccessRule)rule);
92                 }
93                 
94                 public void SetAccessRule (EventWaitHandleAccessRule rule)
95                 {
96                         SetAccessRule ((AccessRule)rule);
97                 }
98                 
99                 public override AuditRule AuditRuleFactory (IdentityReference identityReference, int accessMask,
100                                                             bool isInherited, InheritanceFlags inheritanceFlags,
101                                                             PropagationFlags propagationFlags, AuditFlags flags)
102                 {
103                         return new EventWaitHandleAuditRule (identityReference, (EventWaitHandleRights) accessMask, flags);
104                 }
105                 
106                 public void AddAuditRule (EventWaitHandleAuditRule rule)
107                 {
108                         AddAuditRule ((AuditRule)rule);
109                 }
110                 
111                 public bool RemoveAuditRule (EventWaitHandleAuditRule rule)
112                 {
113                         return RemoveAuditRule((AuditRule)rule);
114                 }
115                 
116                 public void RemoveAuditRuleAll (EventWaitHandleAuditRule rule)
117                 {
118                         RemoveAuditRuleAll((AuditRule)rule);
119                 }
120                 
121                 public void RemoveAuditRuleSpecific (EventWaitHandleAuditRule rule)
122                 {
123                         RemoveAuditRuleSpecific((AuditRule)rule);
124                 }
125                 
126                 public void SetAuditRule (EventWaitHandleAuditRule rule)
127                 {
128                         SetAuditRule((AuditRule)rule);
129                 }
130         }
131 }
132