Add class ExtendedRightAccessRule
authorAlistair Leslie-Hughes <leslie_alistair@hotmail.com>
Mon, 5 Aug 2013 23:29:54 +0000 (09:29 +1000)
committerAlistair Leslie-Hughes <leslie_alistair@hotmail.com>
Tue, 6 Aug 2013 09:22:01 +0000 (19:22 +1000)
mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources
mcs/class/System.DirectoryServices/System.DirectoryServices/ExtendedRightAccessRule.cs [new file with mode: 0644]

index 36b51dc1a75a5d29732ae8e392da2630fa2575c0..8b217340967f43ccd15efbbc703b0ec5ee5f2f43 100644 (file)
@@ -16,6 +16,7 @@ System.DirectoryServices/DirectoryServicesPermissionEntry.cs
 System.DirectoryServices/DirectoryServicesPermissionEntryCollection.cs
 System.DirectoryServices/DirectorySynchronizationOptions.cs
 System.DirectoryServices/DSDescriptionAttribute.cs
+System.DirectoryServices/ExtendedRightAccessRule.cs
 System.DirectoryServices/ListChildrenAccessRule.cs
 System.DirectoryServices/PasswordEncodingMethod.cs
 System.DirectoryServices/PropertyAccess.cs
diff --git a/mcs/class/System.DirectoryServices/System.DirectoryServices/ExtendedRightAccessRule.cs b/mcs/class/System.DirectoryServices/System.DirectoryServices/ExtendedRightAccessRule.cs
new file mode 100644 (file)
index 0000000..742d15f
--- /dev/null
@@ -0,0 +1,54 @@
+/******************************************************************************
+* The MIT License
+*
+* 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.
+*******************************************************************************/
+using System;
+using System.Security.AccessControl;
+using System.Security.Principal;
+
+namespace System.DirectoryServices
+{
+       public sealed class ExtendedRightAccessRule : ActiveDirectoryAccessRule
+       {
+               public ExtendedRightAccessRule (IdentityReference identity, AccessControlType type) : base(identity, 256, type, Guid.Empty, false, InheritanceFlags.None, PropagationFlags.None, Guid.Empty)
+               {
+               }
+
+               public ExtendedRightAccessRule (IdentityReference identity, AccessControlType type, Guid extendedRightType) : base(identity, 256, type, extendedRightType, false, InheritanceFlags.None, PropagationFlags.None, Guid.Empty)
+               {
+               }
+
+               public ExtendedRightAccessRule (IdentityReference identity, AccessControlType type, ActiveDirectorySecurityInheritance inheritanceType) : base(identity, 256, type, Guid.Empty, false, InheritanceFlags.None, PropagationFlags.None, Guid.Empty)
+               {
+               }
+
+               public ExtendedRightAccessRule (IdentityReference identity, AccessControlType type, Guid extendedRightType, ActiveDirectorySecurityInheritance inheritanceType) : base(identity, 256, type, extendedRightType, false, InheritanceFlags.None, PropagationFlags.None, Guid.Empty)
+               {
+               }
+
+               public ExtendedRightAccessRule (IdentityReference identity, AccessControlType type, ActiveDirectorySecurityInheritance inheritanceType, Guid inheritedObjectType) : base(identity, 256, type, Guid.Empty, false, InheritanceFlags.None, PropagationFlags.None, inheritedObjectType)
+               {
+               }
+
+               public ExtendedRightAccessRule (IdentityReference identity, AccessControlType type, Guid extendedRightType, ActiveDirectorySecurityInheritance inheritanceType, Guid inheritedObjectType) : base(identity, 256, type, extendedRightType, false, InheritanceFlags.None, PropagationFlags.None, inheritedObjectType)
+               {
+               }
+       }
+}