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

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

using System;
using System.Diagnostics;

namespace System.Diagnostics {

	[Serializable]
	public enum EventLogEntryType {
		Error = 0x01,
		Warning = 0x02,
		Information = 0x04,
		SuccessAudit = 0x08,
		FailureAudit = 0x10
	}
}