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:
Diffstat (limited to 'mcs/class/System/System.Security.AccessControl/SemaphoreAccessRule.cs')
-rw-r--r--mcs/class/System/System.Security.AccessControl/SemaphoreAccessRule.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/mcs/class/System/System.Security.AccessControl/SemaphoreAccessRule.cs b/mcs/class/System/System.Security.AccessControl/SemaphoreAccessRule.cs
index a885b7db026..cbdaefdde4f 100644
--- a/mcs/class/System/System.Security.AccessControl/SemaphoreAccessRule.cs
+++ b/mcs/class/System/System.Security.AccessControl/SemaphoreAccessRule.cs
@@ -40,6 +40,7 @@ namespace System.Security.AccessControl {
public SemaphoreAccessRule (IdentityReference identity,
SemaphoreRights semaphoreRights,
AccessControlType type)
+ : base (identity, 0, false, InheritanceFlags.None, PropagationFlags.None, type)
{
this.semaphoreRights = semaphoreRights;
}
@@ -47,6 +48,7 @@ namespace System.Security.AccessControl {
public SemaphoreAccessRule (string identity,
SemaphoreRights semaphoreRights,
AccessControlType type)
+ : base (null, 0, false, InheritanceFlags.None, PropagationFlags.None, type)
{
this.semaphoreRights = semaphoreRights;
}