[bcl] Sync recent NS2.1 changes (#15696)
[mono-project.git] / mcs / class / corlib / System.Diagnostics.Tracing / EventWrittenEventArgs.cs
blobef51bee5d7d1435acae4da8fd0df69d6aed89886
1 //
2 // EventWrittenEventArgs.cs
3 //
4 // Authors:
5 // Frederik Carlier <frederik.carlier@quamotion.mobi>
6 //
7 // Copyright (C) 2015 Quamotion (http://quamotion.mobi)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 using System.Collections.Generic;
30 using System.Collections.ObjectModel;
32 namespace System.Diagnostics.Tracing
34 public class EventWrittenEventArgs : EventArgs
36 internal EventWrittenEventArgs (EventSource eventSource)
38 this.EventSource = eventSource;
41 public Guid ActivityId
43 get { return EventSource.CurrentThreadActivityId; }
46 public EventChannel Channel
48 get { return EventChannel.None; }
51 public int EventId
53 get;
54 internal set;
57 public long OSThreadId
59 get;
60 internal set;
63 public DateTime TimeStamp
65 get;
66 internal set;
69 public string EventName
71 get;
72 internal set;
75 public EventSource EventSource
77 get;
78 private set;
81 public EventKeywords Keywords
83 get { return EventKeywords.None; }
86 public EventLevel Level
88 get { return EventLevel.LogAlways; }
91 public string Message
93 get;
94 internal set;
97 public EventOpcode Opcode
99 get { return EventOpcode.Info; }
102 public ReadOnlyCollection<object> Payload
104 get;
105 internal set;
108 public ReadOnlyCollection<string> PayloadNames
110 get;
111 internal set;
114 public Guid RelatedActivityId
116 get;
117 internal set;
120 public EventTags Tags
122 get { return EventTags.None; }
125 public EventTask Task
127 get { return EventTask.None; }
130 public byte Version
132 get { return 0; }