From: Atsushi Kanamori Date: Mon, 20 Mar 2017 21:01:10 +0000 (-0700) Subject: NS2.0 - Complete System.Security namespace. X-Git-Tag: submit/tizen/20210909.063632~11030^2~7636^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=45d24e8dd2c6fb894d4bbb0806a2d16b6754538b;p=platform%2Fupstream%2Fdotnet%2Fruntime.git NS2.0 - Complete System.Security namespace. - Add GetObjectData() implementation to System.SecurityExcepton - Clean up a bit and move to shared partition. Commit migrated from https://github.com/dotnet/coreclr/commit/74e00c8c34a490a7dfd00a7a6fb2fb9ffc77f7db --- diff --git a/src/coreclr/src/mscorlib/shared/System.Private.CoreLib.Shared.projitems b/src/coreclr/src/mscorlib/shared/System.Private.CoreLib.Shared.projitems index fd12c72..193edaf 100644 --- a/src/coreclr/src/mscorlib/shared/System.Private.CoreLib.Shared.projitems +++ b/src/coreclr/src/mscorlib/shared/System.Private.CoreLib.Shared.projitems @@ -196,6 +196,7 @@ + diff --git a/src/coreclr/src/mscorlib/shared/System/Security/SecurityException.cs b/src/coreclr/src/mscorlib/shared/System/Security/SecurityException.cs new file mode 100644 index 0000000..86e3cd4 --- /dev/null +++ b/src/coreclr/src/mscorlib/shared/System/Security/SecurityException.cs @@ -0,0 +1,66 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System.Reflection; +using System.Runtime.Serialization; + +namespace System.Security +{ + [Serializable] + public class SecurityException : SystemException + { + public SecurityException() + : base(SR.Arg_SecurityException) + { + HResult = __HResults.COR_E_SECURITY; + } + + public SecurityException(string message) + : base(message) + { + HResult = __HResults.COR_E_SECURITY; + } + + public SecurityException(string message, Exception inner) + : base(message, inner) + { + HResult = __HResults.COR_E_SECURITY; + } + + public SecurityException(string message, Type type) + : base(message) + { + HResult = __HResults.COR_E_SECURITY; + PermissionType = type; + } + + public SecurityException(string message, Type type, string state) + : base(message) + { + HResult = __HResults.COR_E_SECURITY; + PermissionType = type; + PermissionState = state; + } + + protected SecurityException(SerializationInfo info, StreamingContext context) + : base(info, context) + { + } + + public override string ToString() => base.ToString(); + + public override void GetObjectData(SerializationInfo info, StreamingContext context) => base.GetObjectData(info, context); + + public object Demanded { get; set; } + public object DenySetInstance { get; set; } + public AssemblyName FailedAssemblyInfo { get; set; } + public string GrantedSet { get; set; } + public MethodInfo Method { get; set; } + public string PermissionState { get; set; } + public Type PermissionType { get; set; } + public object PermitOnlySetInstance { get; set; } + public string RefusedSet { get; set; } + public string Url { get; set; } + } +}