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

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

namespace System.Security {

	public enum PolicyLevelType {
		User = 0x0,
		Machine,
		Enterprise,
		AppDomain,
	}
}