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