2 writes to events
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
5297
events
= new StringBuilder();
5325
events
= null;
13 references to events
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (13)
5468
events
?.Append(" <event value=\"").Append(eventAttribute.EventId).
5471
AppendLevelName(
events
, eventAttribute.Level);
5472
events
?.Append("\" symbol=\"").Append(eventName).Append('"');
5477
WriteMessageAttrib(
events
, "event", eventName, eventAttribute.Message);
5481
events
?.Append(" keywords=\"");
5482
AppendKeywords(
events
, (ulong)eventAttribute.Keywords, eventName);
5483
events
?.Append('"');
5489
events
?.Append(" opcode=\"").Append(str).Append('"');
5495
events
?.Append(" task=\"").Append(str).Append('"');
5501
events
?.Append(" channel=\"").Append(str).Append('"');
5546
events
?.Append(" template=\"").Append(eventName).Append("Args\"");
5548
events
?.AppendLine("/>");
5781
sb?.Append(
events
);