4 implementations of TrackEvent
dotnet (2)
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
64public void TrackEvent(string eventName, IDictionary<string, string> properties, IDictionary<string, double> measurements)
Telemetry\Telemetry.cs (1)
90public void TrackEvent(string eventName, IDictionary<string, string> properties,
dotnet.Tests (2)
CommandTests\MSBuild\FakeTelemetry.cs (1)
14public void TrackEvent(string eventName, IDictionary<string, string> properties, IDictionary<string, double> measurements)
FakeRecordEventNameTelemetry.cs (1)
17public void TrackEvent(string eventName,
6 references to TrackEvent
dotnet (6)
CliSchema.cs (1)
78telemetryClient?.TrackEvent("schema", telemetryProperties, null);
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
39telemetry.TrackEvent(e.EventName, e.Properties, null);
Commands\MSBuild\MSBuildLogger.cs (2)
133telemetry.TrackEvent(newEventName, maskedProperties, measurements: null); 208telemetry.TrackEvent(eventName, properties ?? eventProperties, measurements);
Program.cs (2)
150TelemetryEventEntry.Subscribe(TelemetryClient.TrackEvent); 288TelemetryClient.TrackEvent("command/finish", properties: new Dictionary<string, string>