2 implementations of Enabled
dotnet (2)
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
48public bool Enabled => _telemetry.Enabled;
Telemetry\TelemetryClient.cs (1)
76public bool Enabled { get; }
4 references to Enabled
dotnet (4)
Commands\MSBuild\MSBuildLogger.cs (2)
102if (_telemetry != null && _telemetry.Enabled) 227if (telemetry == null || !telemetry.Enabled)
Program.cs (2)
77Reporter.Verbose.WriteLine($"Telemetry is: {(TelemetryInstance.Enabled ? "Enabled" : "Disabled")}"); 80if (TelemetryInstance.Enabled && s_mainActivity is not null)