mscorlib(4.0.0.0) API with additions
SecurityZone.cs
2 
3 namespace System.Security
4 {
7  [ComVisible(true)]
8  public enum SecurityZone
9  {
11  MyComputer = 0,
13  Intranet = 1,
15  Trusted = 2,
17  Internet = 3,
19  Untrusted = 4,
21  NoZone = -1
22  }
23 }
SecurityZone
Defines the integer values corresponding to security zones used by security policy.
Definition: SecurityZone.cs:8
Definition: __Canon.cs:3
The local intranet zone is used for content located on a company's intranet. Because the servers and ...
The trusted sites zone is used for content located on Web sites considered more reputable or trustwor...
The Internet zone is used for the Web sites on the Internet that do not belong to another zone.
The local computer zone is an implicit zone used for content that exists on the user's computer.
Specifies that the class can be serialized.
The restricted sites zone is used for Web sites with content that could cause, or could have caused,...