33 lines
730 B
C#
33 lines
730 B
C#
|
// ==++==
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// ==--==
|
||
|
// SecurityZone.cs
|
||
|
//
|
||
|
// <OWNER>[....]</OWNER>
|
||
|
//
|
||
|
// Enumeration of the zones code can come from
|
||
|
//
|
||
|
|
||
|
namespace System.Security
|
||
|
{
|
||
|
using System;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
// The quick cache code depends on the values in this enumeration. Any change to this enumeration should
|
||
|
// be reflected in PolicyManager.GenerateQuickCache as well.
|
||
|
[ComVisible(true)]
|
||
|
[Serializable]
|
||
|
public enum SecurityZone
|
||
|
{
|
||
|
MyComputer = 0,
|
||
|
Intranet = 1,
|
||
|
Trusted = 2,
|
||
|
Internet = 3,
|
||
|
Untrusted = 4,
|
||
|
|
||
|
NoZone = -1, // No Zone Information
|
||
|
}
|
||
|
}
|