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