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/corlib/System.Security.Permissions/SecurityAction.cs')
-rw-r--r--mcs/class/corlib/System.Security.Permissions/SecurityAction.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/corlib/System.Security.Permissions/SecurityAction.cs b/mcs/class/corlib/System.Security.Permissions/SecurityAction.cs
index 9a20872424b..f45abac05ea 100644
--- a/mcs/class/corlib/System.Security.Permissions/SecurityAction.cs
+++ b/mcs/class/corlib/System.Security.Permissions/SecurityAction.cs
@@ -43,22 +43,22 @@ namespace System.Security.Permissions {
public enum SecurityAction {
Demand = 2,
Assert = 3,
-#if NET_4_0 || MOONLIGHT
+#if NET_4_0
[Obsolete ("This requests should not be used")]
#endif
Deny = 4,
PermitOnly = 5,
LinkDemand = 6,
InheritanceDemand = 7,
-#if NET_4_0 || MOONLIGHT
+#if NET_4_0
[Obsolete ("This requests should not be used")]
#endif
RequestMinimum = 8,
-#if NET_4_0 || MOONLIGHT
+#if NET_4_0
[Obsolete ("This requests should not be used")]
#endif
RequestOptional = 9,
-#if NET_4_0 || MOONLIGHT
+#if NET_4_0
[Obsolete ("This requests should not be used")]
#endif
RequestRefuse = 10,