2 writes to events
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
5331
events
= new StringBuilder();
5359
events
= null;
13 references to events
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (13)
5502
events
?.Append(" <event value=\"").Append(eventAttribute.EventId).
5505
AppendLevelName(
events
, eventAttribute.Level);
5506
events
?.Append("\" symbol=\"").Append(eventName).Append('"');
5511
WriteMessageAttrib(
events
, "event", eventName, eventAttribute.Message);
5515
events
?.Append(" keywords=\"");
5516
AppendKeywords(
events
, (ulong)eventAttribute.Keywords, eventName);
5517
events
?.Append('"');
5523
events
?.Append(" opcode=\"").Append(str).Append('"');
5529
events
?.Append(" task=\"").Append(str).Append('"');
5535
events
?.Append(" channel=\"").Append(str).Append('"');
5580
events
?.Append(" template=\"").Append(eventName).Append("Args\"");
5582
events
?.AppendLine("/>");
5815
sb?.Append(
events
);