From: Viktor Hofer Date: Wed, 19 Apr 2017 02:36:14 +0000 (+0200) Subject: Revert "Add SecurityZone stub" (dotnet/coreclr#11053) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7203 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=affb4e1cd89a8edd4f4e69c6f05480fe06ecf44a;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Revert "Add SecurityZone stub" (dotnet/coreclr#11053) Commit migrated from https://github.com/dotnet/coreclr/commit/c4130e4c193083a6bed5e1ed9a0c99f416c286df --- diff --git a/src/coreclr/src/mscorlib/shared/System/Security/SecurityException.cs b/src/coreclr/src/mscorlib/shared/System/Security/SecurityException.cs index 9010652..86e3cd4 100644 --- a/src/coreclr/src/mscorlib/shared/System/Security/SecurityException.cs +++ b/src/coreclr/src/mscorlib/shared/System/Security/SecurityException.cs @@ -62,16 +62,5 @@ namespace System.Security public object PermitOnlySetInstance { get; set; } public string RefusedSet { get; set; } public string Url { get; set; } - public SecurityZone Zone { get; set; } - } - - public enum SecurityZone - { - MyComputer = 0, - Intranet = 1, - Trusted = 2, - Internet = 3, - Untrusted = 4, - NoZone = -1 } }