2 writes to events
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
5331events = new StringBuilder(); 5359events = null;
13 references to events
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (13)
5502events?.Append(" <event value=\"").Append(eventAttribute.EventId). 5505AppendLevelName(events, eventAttribute.Level); 5506events?.Append("\" symbol=\"").Append(eventName).Append('"'); 5511WriteMessageAttrib(events, "event", eventName, eventAttribute.Message); 5515events?.Append(" keywords=\""); 5516AppendKeywords(events, (ulong)eventAttribute.Keywords, eventName); 5517events?.Append('"'); 5523events?.Append(" opcode=\"").Append(str).Append('"'); 5529events?.Append(" task=\"").Append(str).Append('"'); 5535events?.Append(" channel=\"").Append(str).Append('"'); 5580events?.Append(" template=\"").Append(eventName).Append("Args\""); 5582events?.AppendLine("/>"); 5815sb?.Append(events);