8 instantiations of ResolvedValue
Aspire.Hosting.Azure.Sandboxes (8)
AzureSandboxContainerDeployment.cs (8)
1179return new ResolvedValue(string.Empty, new HashSet<string>(StringComparer.OrdinalIgnoreCase)); 1181return new ResolvedValue(s, new HashSet<string>(StringComparer.OrdinalIgnoreCase)); 1186return new ResolvedValue( 1212return new ResolvedValue(providedValue, new HashSet<string>(StringComparer.OrdinalIgnoreCase)); 1214return new ResolvedValue(value.ToString() ?? string.Empty, new HashSet<string>(StringComparer.OrdinalIgnoreCase)); 1247return new ResolvedValue(resolved.Value, egressHosts); 1262? new ResolvedValue(string.Empty, new HashSet<string>(StringComparer.OrdinalIgnoreCase)) 1277return new ResolvedValue(
8 references to ResolvedValue
Aspire.Hosting.Azure.Sandboxes (7)
AzureSandboxContainerDeployment.cs (7)
1088var resolvedArg = await ResolveValueWithEgressHostsAsync(context, resource, arg).ConfigureAwait(false); 1159var resolvedValue = await ResolveValueWithEgressHostsAsync(context, resource, value).ConfigureAwait(false); 1170internal static async Task<ResolvedValue> ResolveValueWithEgressHostsAsync(PipelineStepContext context, IResource resource, object? value) 1218static async Task<ResolvedValue> ResolveEndpointValueAsync( 1224var resolved = await ResolveValueWithEgressHostsAsync(context, resource, endpointExpression).ConfigureAwait(false); 1250static async Task<ResolvedValue> ResolveReferenceExpressionAsync( 1270var resolved = await ResolveValueWithEgressHostsAsync(context, resource, expression.ValueProviders[i]).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (1)
AzureSandboxesTests.cs (1)
2885var value = await AzureSandboxContainerDeployment.ResolveValueWithEgressHostsAsync(stepContext, web.Resource, endpointExpression);