1 implementation of GetAsync
Aspire.Hosting (1)
Dcp\KubernetesService.cs (1)
76
public Task<T>
GetAsync
<T>(string name, string? namespaceParameter = null, CancellationToken cancellationToken = default)
4 references to GetAsync
Aspire.Hosting (4)
Dcp\DcpExecutor.cs (4)
675
var dcpSvc = await _kubernetesService.
GetAsync
<Service>(sar.Service.Metadata.Name, cancellationToken: cancellationToken).ConfigureAwait(false);
1488
var cu = await _kubernetesService.
GetAsync
<Container>(c.Metadata.Name, cancellationToken: attemptCancellationToken).ConfigureAwait(false);
1503
var eu = await _kubernetesService.
GetAsync
<Executable>(e.Metadata.Name, cancellationToken: attemptCancellationToken).ConfigureAwait(false);
1617
var r = await _kubernetesService.
GetAsync
<T>(resourceName, cancellationToken: attemptCancellationToken).ConfigureAwait(false);