summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Security/SecurityState.cs
blob: 55dcce07c099febe1de13f0b3384e7ca7bdf8dac (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
// 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;
using System.Security;

namespace System.Security
{
    public abstract class SecurityState
    {
        protected SecurityState(){}
        
        public bool IsStateAvailable()
        {
            AppDomainManager domainManager = AppDomainManager.CurrentAppDomainManager;

            // CheckSecuritySettings only when appdomainManager is present. So if there is no 
            // appDomain Manager return true as by default coreclr runs in fulltrust. 
            return domainManager != null ? domainManager.CheckSecuritySettings(this) : true;
        }
        // override this function and throw the appropriate 
        public abstract void EnsureState();
    }

}