1 write to events
mscorlib (1)
system\diagnostics\eventing\eventsource.cs (1)
6040
events
= new StringBuilder();
9 references to events
mscorlib (9)
system\diagnostics\eventing\eventsource.cs (9)
6182
events
.Append(" <event").
6191
WriteMessageAttrib(
events
, "event", eventName, eventAttribute.Message);
6194
events
.Append(" keywords=\"").Append(GetKeywords((ulong)eventAttribute.Keywords, eventName)).Append("\"");
6196
events
.Append(" opcode=\"").Append(GetOpcodeName(eventAttribute.Opcode, eventName)).Append("\"");
6198
events
.Append(" task=\"").Append(GetTaskName(eventAttribute.Task, eventName)).Append("\"");
6202
events
.Append(" channel=\"").Append(GetChannelName(eventAttribute.Channel, eventName, eventAttribute.Message)).Append("\"");
6249
events
.Append(" template=\"").Append(eventName).Append("Args\"");
6251
events
.Append("/>").AppendLine();
6476
sb.Append(
events
);