System.Security.Permissions.PermissionState.cs

ylbtech-System.Security.Permissions.PermissionState.cs

 

1. Back to top
1、
#regionassembler mscorlib, Version = 4.0.0.0, Culture = neutral, PublicKeyToken = b77a5c561934e089
 // C: \ Program Files (x86) \ Reference Assemblies \ Microsoft \ Framework \ .NETFramework \ v4.6.1 \ mscorlib.dll 
#endregion 

using System.Runtime.InteropServices; 

namespace System.Security.Permissions 
{ 
    // 
    // Summary:
     //      Whether the specified permission should be created with all or no access to resources. 
    [ComVisible ( true )]
     public  enum PermissionState 
    { 
        // 
        // Summary:
         //      Resources protected by permissions that cannot be accessed. 
        None = 0 ,
         //
        // Summary:
         //      Resources protected by full access permissions. 
        Unrestricted = 1 
    } 
}
2、
2. Back to top
 
3. Back to top
 
4. Back to top
 
5. Back to top
 
 
6. Back to top
 
warn Author: ylbtech
Source: http://ylbtech.cnblogs.com/
This article belongs to the author and blog Park total, welcome to reprint, but without the author's consent declared by this section must be retained, and given the original connection in the apparent position of the article page, otherwise Reserves the right to pursue legal responsibility.

Guess you like

Origin www.cnblogs.com/storebook/p/12676378.html