2 writes to templates
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
5311templates = new StringBuilder(); 5339templates = null;
9 references to templates
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (9)
5521templates?.Append(" <template tid=\"").Append(eventName).AppendLine("Args\">"); 5531templates?.Append(" <data name=\"").Append(name).AppendLine("Size\" inType=\"win:UInt32\"/>"); 5534templates?.Append(" <data name=\"").Append(name).Append("\" inType=\"").Append(GetTypeName(type)).Append('"'); 5540templates?.Append(" length=\"").Append(name).Append("Size\""); 5545templates?.Append(" map=\"").Append(type.Name).Append('"'); 5550templates?.AppendLine("/>"); 5558templates?.AppendLine(" </template>"); 5798if (templates?.Length > 0) 5800sb?.Append(templates);