1 write to templates
mscorlib (1)
system\diagnostics\eventing\eventsource.cs (1)
6041
templates
= new StringBuilder();
9 references to templates
mscorlib (9)
system\diagnostics\eventing\eventsource.cs (9)
6210
templates
.Append(" <template tid=\"").Append(eventName).Append("Args\">").AppendLine();
6221
templates
.Append(" <data name=\"").Append(name).Append("Size\" inType=\"win:UInt32\"/>").AppendLine();
6224
templates
.Append(" <data name=\"").Append(name).Append("\" inType=\"").Append(GetTypeName(type)).Append("\"");
6230
templates
.Append(" length=\"").Append(name).Append("Size\"");
6235
templates
.Append(" map=\"").Append(type.Name).Append("\"");
6242
templates
.Append("/>").AppendLine();
6248
templates
.Append(" </template>").AppendLine();
6480
if (
templates
.Length > 0)
6482
sb.Append(
templates
);