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