5 references to HttpEndpointName
Aspire.Hosting.Qdrant (5)
QdrantBuilderExtensions.cs (4)
77
.WithHttpEndpoint(port: httpPort, targetPort: QdrantPortHttp, name: QdrantServerResource.
HttpEndpointName
)
96
.WithUrlForEndpoint(QdrantServerResource.
HttpEndpointName
, c => c.DisplayText = "Qdrant (HTTP)")
97
.WithUrlForEndpoint(QdrantServerResource.
HttpEndpointName
, e => new ResourceUrlAnnotation() { Url = "/dashboard", DisplayText = "Qdrant Dashboard" });
148
context.EnvironmentVariables[$"ConnectionStrings__{qdrantResource.Resource.Name}_{QdrantServerResource.
HttpEndpointName
}"] = qdrantResource.Resource.HttpConnectionStringExpression;
QdrantServerResource.cs (1)
41
public EndpointReference HttpEndpoint => _httpEndpoint ??= new(this,
HttpEndpointName
);