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