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