Merge pull request #5002 from BrzVlad/feature-sgen-modes
[mono.git] / mcs / class / corlib / System.Security.AccessControl / MutexAuditRule.cs
index 0980d2edb01e3fc061177e46a156d940b3f7bbca..16656bec2b7c2d10462d2ee6ccf16c49927ed9f0 100644 (file)
@@ -1,10 +1,11 @@
 //
 // System.Security.AccessControl.MutexAuditRule implementation
 //
-// Author:
+// Authors:
 //     Dick Porter  <dick@ximian.com>
+//     Atsushi Enomoto  <atsushi@ximian.com>
 //
-// Copyright (C) 2006 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2006-2007 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
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 using System.Security.Principal;
 
-namespace System.Security.AccessControl {
+namespace System.Security.AccessControl
+{
        public sealed class MutexAuditRule : AuditRule
        {
-               MutexRights mutexRights;
-               
                public MutexAuditRule (IdentityReference identity,
-                                      MutexRights mutexRights,
+                                      MutexRights eventRights,
                                       AuditFlags flags)
+                       : base (identity, (int)eventRights, false, InheritanceFlags.None, PropagationFlags.None, flags)
                {
-                       this.mutexRights = mutexRights;
                }
                
-               public MutexRights MutexRights
-               {
-                       get {
-                               return(mutexRights);
-                       }
+               public MutexRights MutexRights {
+                       get { return (MutexRights)AccessMask; }
                }
        }
 }
 
-#endif