From 45d24e8dd2c6fb894d4bbb0806a2d16b6754538b Mon Sep 17 00:00:00 2001 From: Atsushi Kanamori Date: Mon, 20 Mar 2017 14:01:10 -0700 Subject: [PATCH] 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 --- .../shared/System.Private.CoreLib.Shared.projitems | 1 + .../shared/System/Security/SecurityException.cs | 66 ++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 src/coreclr/src/mscorlib/shared/System/Security/SecurityException.cs 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; } + } +} -- 2.7.4