-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEventVerbosity.cs
More file actions
46 lines (40 loc) · 1.43 KB
/
EventVerbosity.cs
File metadata and controls
46 lines (40 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System;
using System.Runtime.Serialization;
namespace RapidField.SolidInstruments.EventAuthoring
{
/// <summary>
/// Specifies the verbosity level associated with an <see cref="IEvent" />.
/// </summary>
[DataContract]
public enum EventVerbosity : Int32
{
/// <summary>
/// The application event verbosity is not specified.
/// </summary>
[EnumMember]
Unspecified = 0,
/// <summary>
/// The event importance is high or the event occurs infrequently.
/// </summary>
[EnumMember]
Minimal = 1,
/// <summary>
/// The event importance is normal.
/// </summary>
[EnumMember]
Normal = 2,
/// <summary>
/// The event importance is low or the event occurs frequently.
/// </summary>
[EnumMember]
Detailed = 3,
/// <summary>
/// Information about the event is relevant in diagnostic contexts.
/// </summary>
[EnumMember]
Diagnostic = 4
}
}