Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SecurityZone.cs « System.Security « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68a7014d5d4d1bbf1818b0da99ddb2ef4a9cecfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Security.SecurityZone.cs
//
// Author:
//   Nick Drochak(ndrochak@gol.com)
//
// (C) Nick Drochak
//

namespace System.Security {

	public enum SecurityZone {
		MyComputer = 0x0,
		Intranet,
		Trusted,
		Internet,
		Untrusted,
		NoZone = -1,
	}
}