7 references to ProcessValueAsync
Aspire.Hosting.Kubernetes (7)
KubernetesResource.cs (7)
380var value = await ProcessValueAsync(environmentContext, executionContext, arg).ConfigureAwait(false);
425var value = await ProcessValueAsync(environmentContext, executionContext, environmentVariable.Value).ConfigureAwait(false);
632return await ProcessValueAsync(context, executionContext, branch, embedded).ConfigureAwait(false);
637var inner = await ProcessValueAsync(context, executionContext, expr.ValueProviders[0], embedded).ConfigureAwait(false);
649var val = await ProcessValueAsync(context, executionContext, vp, true).ConfigureAwait(false);
671var whenTrueResult = await ProcessValueAsync(context, executionContext, expr.WhenTrue!, embedded).ConfigureAwait(false);
672var whenFalseResult = await ProcessValueAsync(context, executionContext, expr.WhenFalse!, embedded).ConfigureAwait(false);