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