4 implementations of Enabled
dotnet (2)
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
53
public bool
Enabled
=> telemetry.Enabled;
Telemetry\Telemetry.cs (1)
26
public bool
Enabled
{ get; }
dotnet.Tests (2)
CommandTests\MSBuild\FakeTelemetry.cs (1)
12
public bool
Enabled
{ get; set; } = true;
FakeRecordEventNameTelemetry.cs (1)
13
public bool
Enabled
{ get; set; }
4 references to Enabled
dotnet (4)
Commands\MSBuild\MSBuildLogger.cs (2)
113
if (_telemetry != null && _telemetry.
Enabled
)
244
if (telemetry == null || !telemetry.
Enabled
)
Program.cs (2)
234
Console.WriteLine($"Telemetry is: {(TelemetryClient.
Enabled
? "Enabled" : "Disabled")}");
240
if (TelemetryClient.
Enabled
)