7 instantiations of ResolvedValue
Aspire.Hosting.Azure.Sandboxes (7)
AzureSandboxContainerDeployment.cs (7)
1144return new ResolvedValue(string.Empty, new HashSet<string>(StringComparer.OrdinalIgnoreCase)); 1146return new ResolvedValue(s, new HashSet<string>(StringComparer.OrdinalIgnoreCase)); 1170return new ResolvedValue(providedValue, new HashSet<string>(StringComparer.OrdinalIgnoreCase)); 1172return new ResolvedValue(value.ToString() ?? string.Empty, new HashSet<string>(StringComparer.OrdinalIgnoreCase)); 1205return new ResolvedValue(resolved.Value, egressHosts); 1220? new ResolvedValue(string.Empty, new HashSet<string>(StringComparer.OrdinalIgnoreCase)) 1235return new ResolvedValue(
8 references to ResolvedValue
Aspire.Hosting.Azure.Sandboxes (7)
AzureSandboxContainerDeployment.cs (7)
1053var resolvedArg = await ResolveValueWithEgressHostsAsync(context, resource, arg).ConfigureAwait(false); 1124var resolvedValue = await ResolveValueWithEgressHostsAsync(context, resource, value).ConfigureAwait(false); 1135internal static async Task<ResolvedValue> ResolveValueWithEgressHostsAsync(PipelineStepContext context, IResource resource, object? value) 1176static async Task<ResolvedValue> ResolveEndpointValueAsync( 1182var resolved = await ResolveValueWithEgressHostsAsync(context, resource, endpointExpression).ConfigureAwait(false); 1208static async Task<ResolvedValue> ResolveReferenceExpressionAsync( 1228var resolved = await ResolveValueWithEgressHostsAsync(context, resource, expression.ValueProviders[i]).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (1)
AzureSandboxesTests.cs (1)
2450var value = await AzureSandboxContainerDeployment.ResolveValueWithEgressHostsAsync(stepContext, web.Resource, endpointExpression);