2 writes to templates
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ManifestBuilder.cs (2)
31templates = new StringBuilder(); 59templates = null;
9 references to templates
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ManifestBuilder.cs (9)
241templates?.Append(" <template tid=\"").Append(eventName).AppendLine("Args\">"); 251templates?.Append(" <data name=\"").Append(name).AppendLine("Size\" inType=\"win:UInt32\"/>"); 254templates?.Append(" <data name=\"").Append(name).Append("\" inType=\"").Append(GetTypeName(type)).Append('"'); 260templates?.Append(" length=\"").Append(name).Append("Size\""); 265templates?.Append(" map=\"").Append(type.Name).Append('"'); 270templates?.AppendLine("/>"); 278templates?.AppendLine(" </template>"); 518if (templates?.Length > 0) 520sb?.Append(templates);