Share via


ResourceExtensions.GetEndpoints Method

Definition

Overloads

GetEndpoints(IResourceWithEndpoints)

Gets references to all endpoints for the specified resource.

GetEndpoints(IResourceWithEndpoints, NetworkIdentifier)

Gets references to all endpoints for the specified resource.

GetEndpoints(IResourceWithEndpoints)

Source:
ResourceExtensions.cs
Source:
ResourceExtensions.cs
Source:
ResourceExtensions.cs
Source:
ResourceExtensions.cs
Source:
ResourceExtensions.cs
Source:
ResourceExtensions.cs
Source:
ResourceExtensions.cs

Gets references to all endpoints for the specified resource.

public static System.Collections.Generic.IEnumerable<Aspire.Hosting.ApplicationModel.EndpointReference> GetEndpoints(this Aspire.Hosting.ApplicationModel.IResourceWithEndpoints resource);
static member GetEndpoints : Aspire.Hosting.ApplicationModel.IResourceWithEndpoints -> seq<Aspire.Hosting.ApplicationModel.EndpointReference>
<Extension()>
Public Function GetEndpoints (resource As IResourceWithEndpoints) As IEnumerable(Of EndpointReference)

Parameters

resource
IResourceWithEndpoints

The IResourceWithEndpoints which contains EndpointAnnotation annotations.

Returns

An enumeration of EndpointReference based on the EndpointAnnotation annotations from the resources' Annotations collection.

Applies to

GetEndpoints(IResourceWithEndpoints, NetworkIdentifier)

Source:
ResourceExtensions.cs

Gets references to all endpoints for the specified resource.

public static System.Collections.Generic.IEnumerable<Aspire.Hosting.ApplicationModel.EndpointReference> GetEndpoints(this Aspire.Hosting.ApplicationModel.IResourceWithEndpoints resource, Aspire.Hosting.ApplicationModel.NetworkIdentifier contextNetworkID);
static member GetEndpoints : Aspire.Hosting.ApplicationModel.IResourceWithEndpoints * Aspire.Hosting.ApplicationModel.NetworkIdentifier -> seq<Aspire.Hosting.ApplicationModel.EndpointReference>
<Extension()>
Public Function GetEndpoints (resource As IResourceWithEndpoints, contextNetworkID As NetworkIdentifier) As IEnumerable(Of EndpointReference)

Parameters

resource
IResourceWithEndpoints

The IResourceWithEndpoints which contains EndpointAnnotation annotations.

contextNetworkID
NetworkIdentifier

The ID of the network that serves as the context context for the endpoint references.

Returns

An enumeration of EndpointReference based on the EndpointAnnotation annotations from the resources' Annotations collection.

Applies to