Implemented interface member:
property
IsReadOnly
Aspire.Dashboard.ServiceClient.IDashboardClient.IsReadOnly
10 references to IsReadOnly
Aspire.Dashboard (10)
ServiceClient\SelectedDashboardClient.cs (10)
11
public Task WhenConnected =>
IsReadOnly
? Task.CompletedTask : currentClient.WhenConnected;
12
public bool IsEnabled =>
IsReadOnly
|| currentClient.IsEnabled;
14
public DashboardConnectionState ConnectionState =>
IsReadOnly
? DashboardConnectionState.Connected : currentClient.ConnectionState;
16
public string? MinRequiredVersion =>
IsReadOnly
? null : currentClient.MinRequiredVersion;
22
if (!
IsReadOnly
)
33
public Task ReconnectAsync() =>
IsReadOnly
? Task.CompletedTask : currentClient.ReconnectAsync();
38
IsReadOnly
42
IsReadOnly
53
IsReadOnly
? EmptyInteractionsAsync() : currentClient.SubscribeInteractionsAsync(cancellationToken);
75
if (
IsReadOnly
)