2 writes to templates
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
5300templates = new StringBuilder(); 5328templates = null;
9 references to templates
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (9)
5510templates?.Append(" <template tid=\"").Append(eventName).AppendLine("Args\">"); 5520templates?.Append(" <data name=\"").Append(name).AppendLine("Size\" inType=\"win:UInt32\"/>"); 5523templates?.Append(" <data name=\"").Append(name).Append("\" inType=\"").Append(GetTypeName(type)).Append('"'); 5529templates?.Append(" length=\"").Append(name).Append("Size\""); 5534templates?.Append(" map=\"").Append(type.Name).Append('"'); 5539templates?.AppendLine("/>"); 5547templates?.AppendLine(" </template>"); 5787if (templates?.Length > 0) 5789sb?.Append(templates);