2 writes to events
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
5310
events
= new StringBuilder();
5338
events
= null;
13 references to events
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (13)
5481
events
?.Append(" <event value=\"").Append(eventAttribute.EventId).
5484
AppendLevelName(
events
, eventAttribute.Level);
5485
events
?.Append("\" symbol=\"").Append(eventName).Append('"');
5490
WriteMessageAttrib(
events
, "event", eventName, eventAttribute.Message);
5494
events
?.Append(" keywords=\"");
5495
AppendKeywords(
events
, (ulong)eventAttribute.Keywords, eventName);
5496
events
?.Append('"');
5502
events
?.Append(" opcode=\"").Append(str).Append('"');
5508
events
?.Append(" task=\"").Append(str).Append('"');
5514
events
?.Append(" channel=\"").Append(str).Append('"');
5559
events
?.Append(" template=\"").Append(eventName).Append("Args\"");
5561
events
?.AppendLine("/>");
5794
sb?.Append(
events
);