2 implementations of TrackEvent
dotnet (2)
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
50
public void
TrackEvent
(string eventName, IDictionary<string, string?>? properties)
Telemetry\TelemetryClient.cs (1)
194
public void
TrackEvent
(string eventName, IDictionary<string, string?>? properties)
5 references to TrackEvent
dotnet (5)
CliSchema.cs (1)
89
telemetryClient?.
TrackEvent
("schema", telemetryProperties);
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
34
telemetry.
TrackEvent
(e.EventName, e.Properties);
Commands\MSBuild\MSBuildLogger.cs (1)
247
telemetry?.
TrackEvent
(eventName, properties ?? eventProperties);
Program.cs (2)
58
TelemetryEventEntry.Subscribe(TelemetryInstance.
TrackEvent
);
143
TelemetryInstance.
TrackEvent
("command/finish", new Dictionary<string, string?> { { "exitCode", exitCode.ToString() } });