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; }
FakeRecordEventNameTelemetry.cs (1)
13
public bool
Enabled
{ get; set; }
3 references to Enabled
dotnet (3)
Commands\MSBuild\MSBuildLogger.cs (1)
94
if (_telemetry != null && _telemetry.
Enabled
)
Program.cs (2)
229
Console.WriteLine($"Telemetry is: {(TelemetryClient.
Enabled
? "Enabled" : "Disabled")}");
235
if (TelemetryClient.
Enabled
)