2 writes to templates
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
5309templates = new StringBuilder(); 5337templates = null;
9 references to templates
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (9)
5519templates?.Append(" <template tid=\"").Append(eventName).AppendLine("Args\">"); 5529templates?.Append(" <data name=\"").Append(name).AppendLine("Size\" inType=\"win:UInt32\"/>"); 5532templates?.Append(" <data name=\"").Append(name).Append("\" inType=\"").Append(GetTypeName(type)).Append('"'); 5538templates?.Append(" length=\"").Append(name).Append("Size\""); 5543templates?.Append(" map=\"").Append(type.Name).Append('"'); 5548templates?.AppendLine("/>"); 5556templates?.AppendLine(" </template>"); 5796if (templates?.Length > 0) 5798sb?.Append(templates);