13 references to EndpointReference
Aspire.Hosting (1)
ApplicationModel\ResourceExtensions.cs (1)
268
return new
EndpointReference
(resource, endpointName);
Aspire.Hosting.Elasticsearch (2)
ElasticsearchResource.cs (2)
39
public EndpointReference PrimaryEndpoint => _primaryEndpoint ??=
new
(this, PrimaryEndpointName);
44
public EndpointReference InternalEndpoint => _internalEndpoint ??=
new
(this, InternalEndpointName);
Aspire.Hosting.Milvus (1)
MilvusServerResource.cs (1)
36
public EndpointReference PrimaryEndpoint => _primaryEndpoint ??=
new
(this, PrimaryEndpointName);
Aspire.Hosting.MySql (1)
MySqlServerResource.cs (1)
22
PrimaryEndpoint =
new
(this, PrimaryEndpointName);
Aspire.Hosting.Oracle (1)
OracleDatabaseServerResource.cs (1)
22
PrimaryEndpoint =
new
(this, PrimaryEndpointName);
Aspire.Hosting.PostgreSQL (1)
PostgresServerResource.cs (1)
27
PrimaryEndpoint =
new
(this, PrimaryEndpointName);
Aspire.Hosting.Qdrant (2)
QdrantServerResource.cs (2)
36
public EndpointReference PrimaryEndpoint => _primaryEndpoint ??=
new
(this, PrimaryEndpointName);
41
public EndpointReference HttpEndpoint => _httpEndpoint ??=
new
(this, HttpEndpointName);
Aspire.Hosting.RabbitMQ (1)
RabbitMQServerResource.cs (1)
25
PrimaryEndpoint =
new
(this, PrimaryEndpointName);
Aspire.Hosting.SqlServer (1)
SqlServerServerResource.cs (1)
22
PrimaryEndpoint =
new
(this, PrimaryEndpointName);
Aspire.Hosting.Tests (2)
ExpressionResolverTests.cs (2)
124
EndpointReference Endpoint1 =>
new
(this, "endpoint1");
125
EndpointReference Endpoint2 =>
new
(this, "endpoint2");