8 writes to EventName
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
806EventName = eventName,
Microsoft.Build.Engine.UnitTests (1)
BackEnd\LoggingServicesLogMethod_Tests.cs (1)
1292EventName = eventName,
Microsoft.Build.Framework (1)
TelemetryEventArgs.cs (1)
50EventName = reader.ReadOptionalString();
Microsoft.Build.Framework.UnitTests (4)
CustomEventArgSerialization_Tests.cs (4)
983TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = "Good", Properties = new Dictionary<string, string> { { "Key", "Value" } } }; 996TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = "Good", Properties = null }; 1013TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = null, Properties = new Dictionary<string, string> { { "Key", "Value" } } }; 1026TelemetryEventArgs genericEvent = new TelemetryEventArgs { EventName = "Good", Properties = new Dictionary<string, string> { { "Key", null } } };
MSBuild (1)
OutOfProcTaskHostNode.cs (1)
481EventName = eventName,
8 references to EventName
Microsoft.Build.Engine.UnitTests (2)
BackEnd\LoggingServicesLogMethod_Tests.cs (2)
1299Assert.Equal(expectedEventArgs.EventName, actualEventArgs.EventName);
Microsoft.Build.Framework (1)
TelemetryEventArgs.cs (1)
31writer.WriteOptionalString(EventName);
Microsoft.Build.Framework.UnitTests (2)
CustomEventArgSerialization_Tests.cs (2)
1051actual.EventName.ShouldBe(expected.EventName);
Microsoft.Build.UnitTests.Shared (2)
MockLogger.cs (2)
427_fullLog.AppendLine($"Telemetry:{telemetryEventArgs.EventName}"); 430_fullLog.AppendLine($" {telemetryEventArgs.EventName}:{pair.Key}={pair.Value}");
Microsoft.DotNet.ArcadeLogging (1)
PipelinesLogger.cs (1)
202if (e.EventName.Equals(s_TelemetryMarker))