summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/Security/SecurityException.cs
blob: 86e3cd4631814c3c1db63deaf713ad6f360b40d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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; }
    }
}