2 writes to events
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
5317
events
= new StringBuilder();
5345
events
= null;
13 references to events
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (13)
5488
events
?.Append(" <event value=\"").Append(eventAttribute.EventId).
5491
AppendLevelName(
events
, eventAttribute.Level);
5492
events
?.Append("\" symbol=\"").Append(eventName).Append('"');
5497
WriteMessageAttrib(
events
, "event", eventName, eventAttribute.Message);
5501
events
?.Append(" keywords=\"");
5502
AppendKeywords(
events
, (ulong)eventAttribute.Keywords, eventName);
5503
events
?.Append('"');
5509
events
?.Append(" opcode=\"").Append(str).Append('"');
5515
events
?.Append(" task=\"").Append(str).Append('"');
5521
events
?.Append(" channel=\"").Append(str).Append('"');
5566
events
?.Append(" template=\"").Append(eventName).Append("Args\"");
5568
events
?.AppendLine("/>");
5801
sb?.Append(
events
);