Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

StrongNameInFlags (Enums)
 
.
Summary

C# Definition:

[Flags]
enum StrongNameInFlags : int
{
    /// <summary>verify even if the settings in the registry disable it</summary>
    ForceVerification    = 0x00000001,

    /// <summary>verification is the first (on entry to the cache)</summary>
    Install                = 0x00000002,

    /// <summary>cache protects assembly from all but admin access</summary>
    AdminAccess            = 0x00000004,

    /// <summary>cache protects user's assembly from other users</summary>
    UserAccess            = 0x00000008,

    /// <summary>cache provides no access restriction guarantees</summary>
    AllAccess            = 0x00000010
}

VB Definition:

Enum StrongNameInFlags
   TODO
End Enum

Notes:

None.

Documentation
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions