2 writes to events
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
5308
events
= new StringBuilder();
5336
events
= null;
13 references to events
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (13)
5479
events
?.Append(" <event value=\"").Append(eventAttribute.EventId).
5482
AppendLevelName(
events
, eventAttribute.Level);
5483
events
?.Append("\" symbol=\"").Append(eventName).Append('"');
5488
WriteMessageAttrib(
events
, "event", eventName, eventAttribute.Message);
5492
events
?.Append(" keywords=\"");
5493
AppendKeywords(
events
, (ulong)eventAttribute.Keywords, eventName);
5494
events
?.Append('"');
5500
events
?.Append(" opcode=\"").Append(str).Append('"');
5506
events
?.Append(" task=\"").Append(str).Append('"');
5512
events
?.Append(" channel=\"").Append(str).Append('"');
5557
events
?.Append(" template=\"").Append(eventName).Append("Args\"");
5559
events
?.AppendLine("/>");
5792
sb?.Append(
events
);