32 lines
1.7 KiB
C#
32 lines
1.7 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Security
|
|
{
|
|
/// <summary>Defines the integer values corresponding to security zones used by security policy.</summary>
|
|
// Token: 0x020005D9 RID: 1497
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum SecurityZone
|
|
{
|
|
/// <summary>The local computer zone is an implicit zone used for content that exists on the user's computer.</summary>
|
|
// Token: 0x0400165C RID: 5724
|
|
MyComputer,
|
|
/// <summary>The local intranet zone is used for content located on a company's intranet. Because the servers and information would be within a company's firewall, a user or company could assign a higher trust level to the content on the intranet.</summary>
|
|
// Token: 0x0400165D RID: 5725
|
|
Intranet,
|
|
/// <summary>The trusted sites zone is used for content located on Web sites considered more reputable or trustworthy than other sites on the Internet. Users can use this zone to assign a higher trust level to these sites to minimize the number of authentication requests. The URLs of these trusted Web sites need to be mapped into this zone by the user.</summary>
|
|
// Token: 0x0400165E RID: 5726
|
|
Trusted,
|
|
/// <summary>The Internet zone is used for the Web sites on the Internet that do not belong to another zone.</summary>
|
|
// Token: 0x0400165F RID: 5727
|
|
Internet,
|
|
/// <summary>The restricted sites zone is used for Web sites with content that could cause, or could have caused, problems when downloaded. The URLs of these untrusted Web sites need to be mapped into this zone by the user.</summary>
|
|
// Token: 0x04001660 RID: 5728
|
|
Untrusted,
|
|
/// <summary>No zone is specified.</summary>
|
|
// Token: 0x04001661 RID: 5729
|
|
NoZone = -1
|
|
}
|
|
}
|