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