SecurityZone
Defines the integer values corresponding to security zones used by security policy.
                namespace System.Security
{
    public enum SecurityZone
    {
        Internet = 3,
        Intranet = 1,
        MyComputer = 0,
        NoZone = -1,
        Trusted = 2,
        Untrusted = 4
    }
}