2 implementations of Enabled
dotnet (2)
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
48public bool Enabled => _telemetry.Enabled;
Telemetry\TelemetryClient.cs (1)
59public 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)
69Reporter.Verbose.WriteLine($"Telemetry is: {(TelemetryInstance.Enabled ? "Enabled" : "Disabled")}"); 76if (TelemetryInstance.Enabled && hostStartupActivity is not null)