StrongNameInFlags (Enums)
Last changed: anonymous

.
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