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

EventLogPermissionAccess.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ae00f87ae1ac1b6e6b911e48c8bd4724003e04d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// System.Diagnostics.EventLogPermissionAccess.cs
//
// Authors:
//   Jonathan Pryor (jonpryor@vt.edu)
//
// (C) 2002 Jonathan Pryor
//

using System;
using System.Diagnostics;

namespace System.Diagnostics {

	[Flags, Serializable]
	public enum EventLogPermissionAccess {
		None=0,
		Browse=0x2,
		Instrument=0x6,
		Audit=0xA,
	}
}