Xamarin Public Jenkins f3e3aab35a Imported Upstream version 4.3.2.467
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
2016-02-22 11:00:01 -05:00

33 lines
731 B
C#

// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
// SecurityZone.cs
//
// <OWNER>ShawnFa</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
}
}