6 references to WithUrlForEndpoint
Aspire.Hosting (1)
ResourceBuilderExtensions.cs (1)
1251/// To add another URL for an endpoint, use <see cref="WithUrlForEndpoint{T}(IResourceBuilder{T}, string, Func{EndpointReference, ResourceUrlAnnotation})"/>.
Aspire.Hosting.Qdrant (1)
QdrantBuilderExtensions.cs (1)
97.WithUrlForEndpoint(QdrantServerResource.HttpEndpointName, e => new ResourceUrlAnnotation() { Url = "/dashboard", DisplayText = "Qdrant Dashboard" });
Aspire.Hosting.Tests (2)
WithUrlsTests.cs (2)
727.WithUrlForEndpoint("non-existant", ep => 873.WithUrlForEndpoint("test", ep =>
TestShop.AppHost (2)
AppHost.cs (2)
61.WithUrlForEndpoint("https", _ => new() 89.WithUrlForEndpoint("https", ep => new() { Url = "/health", DisplayText = "Health", DisplayLocation = UrlDisplayLocation.DetailsOnly })