4 references to ProcessValueAsync
Aspire.Hosting.Kubernetes (4)
KubernetesResource.cs (2)
237var value = await this.ProcessValueAsync(environmentContext, executionContext, arg).ConfigureAwait(false); 263var value = await this.ProcessValueAsync(environmentContext, executionContext, environmentVariable.Value).ConfigureAwait(false);
KubernetesServiceResourceExtensions.cs (2)
69return (await resource.ProcessValueAsync(context, executionContext, expr.ValueProviders[0]).ConfigureAwait(false)).ToString() ?? string.Empty; 77var val = await resource.ProcessValueAsync(context, executionContext, vp).ConfigureAwait(false);