2 writes to _showTimestamp
Aspire.Dashboard (2)
Components\Pages\ConsoleLogs.razor.cs (2)
148
_showTimestamp
= consoleSettings.ShowTimestamp;
377
_showTimestamp
= showTimestamp;
5 references to _showTimestamp
Aspire.Dashboard (5)
Components\Pages\ConsoleLogs.razor.cs (5)
333
OnClick = () => ToggleTimestampAsync(showTimestamp: !
_showTimestamp
, isTimestampUtc: _isTimestampUtc),
334
Text =
_showTimestamp
? Loc[nameof(Dashboard.Resources.ConsoleLogs.ConsoleLogsTimestampHide)] : Loc[nameof(Dashboard.Resources.ConsoleLogs.ConsoleLogsTimestampShow)],
340
OnClick = () => ToggleTimestampAsync(showTimestamp:
_showTimestamp
, isTimestampUtc: !_isTimestampUtc),
343
IsDisabled = !
_showTimestamp
752
new ComponentTelemetryProperty(TelemetryPropertyKeys.ConsoleLogsShowTimestamp, new AspireTelemetryProperty(
_showTimestamp
, AspireTelemetryPropertyType.UserSetting))