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/SemaphoreSecurity.cs')
-rw-r--r--mcs/class/System/System.Security.AccessControl/SemaphoreSecurity.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/mcs/class/System/System.Security.AccessControl/SemaphoreSecurity.cs b/mcs/class/System/System.Security.AccessControl/SemaphoreSecurity.cs
index 764d1a9cbdf..8e3700d2cdf 100644
--- a/mcs/class/System/System.Security.AccessControl/SemaphoreSecurity.cs
+++ b/mcs/class/System/System.Security.AccessControl/SemaphoreSecurity.cs
@@ -35,11 +35,14 @@ using System.Security.Principal;
namespace System.Security.AccessControl {
[ComVisible (false)]
public sealed class SemaphoreSecurity : NativeObjectSecurity {
+
public SemaphoreSecurity ()
+ : base (false, ResourceType.Unknown)
{
}
public SemaphoreSecurity (string name, AccessControlSections includesections)
+ : base (false, ResourceType.Unknown, name, includesections)
{
}