Merge pull request #2377 from joelmartinez/docs-multiassembly-extension-fix
[mono.git] / mcs / class / referencesource / mscorlib / system / security / permissions / permissionstate.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6 //  PermissionState.cs
7 // 
8 // <OWNER>ShawnFa</OWNER>
9 //
10 //  The Runtime policy manager.  Maintains a set of IdentityMapper objects that map 
11 //  inbound evidence to groups.  Resolves an identity into a set of permissions
12 //
13
14 namespace System.Security.Permissions {
15     
16     using System;
17     [Serializable]
18 [System.Runtime.InteropServices.ComVisible(true)]
19     public enum PermissionState
20     {
21         Unrestricted = 1,
22         None = 0,
23     } 
24     
25 }