7 references to Url
Aspire.Hosting (4)
ApplicationModel\EndpointReference.cs (2)
44
ValueTask<string?> IValueProvider.GetValueAsync(CancellationToken cancellationToken) => new(
Url
);
175
EndpointProperty.Url => new(Endpoint.
Url
),
ResourceBuilderExtensions.cs (2)
1328
var baseUri = new Uri(endpoint.
Url
, UriKind.Absolute);
1700
var uri = new UriBuilder(endpoint.
Url
) { Path = path }.Uri;
Aspire.Hosting.Redis.Tests (1)
RedisFunctionalTests.cs (1)
620
var redisCommanderUrl = endpoint.
Url
;
Aspire.Hosting.Testing (1)
DistributedApplicationHostingTestingExtensions.cs (1)
114
return endpoint.
Url
;
Aspire.Hosting.Yarp.Tests (1)
YarpFunctionalTests.cs (1)
39
var httpClient = new HttpClient() { BaseAddress = new Uri(endpoint.
Url
) };