summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Security/Permissions/PermissionState.cs
blob: ea0f1a0ac25e219622a6f97ce438c7f6761dfa96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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.

//
//  The Runtime policy manager.  Maintains a set of IdentityMapper objects that map 
//  inbound evidence to groups.  Resolves an identity into a set of permissions
//

namespace System.Security.Permissions {
    
    using System;
    [Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
    public enum PermissionState
    {
        Unrestricted = 1,
        None = 0,
    } 
    
}