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