summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Security/Permissions/PermissionState.cs
blob: 5cbd0ad1f1ab2649fe4adc2ec3463caca1434bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license 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,
    } 
    
}