7 references to ProcessValueAsync
Aspire.Hosting.Kubernetes (7)
KubernetesResource.cs (7)
304var value = await ProcessValueAsync(environmentContext, executionContext, arg).ConfigureAwait(false);
330var value = await ProcessValueAsync(environmentContext, executionContext, environmentVariable.Value).ConfigureAwait(false);
450return await ProcessValueAsync(context, executionContext, branch, embedded).ConfigureAwait(false);
455return (await ProcessValueAsync(context, executionContext, expr.ValueProviders[0], true).ConfigureAwait(false)).ToString() ?? string.Empty;
463var val = await ProcessValueAsync(context, executionContext, vp, true).ConfigureAwait(false);
485var whenTrueResult = await ProcessValueAsync(context, executionContext, expr.WhenTrue!, embedded).ConfigureAwait(false);
486var whenFalseResult = await ProcessValueAsync(context, executionContext, expr.WhenFalse!, embedded).ConfigureAwait(false);