Share via


IEndpointSelectorPolicy.AppliesToEndpoints Method

Definition

Returns a value that indicates whether the IEndpointSelectorPolicy applies to any endpoint in endpoints.

public:
 bool AppliesToEndpoints(System::Collections::Generic::IReadOnlyList<Microsoft::AspNetCore::Http::Endpoint ^> ^ endpoints);
public bool AppliesToEndpoints (System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.Endpoint> endpoints);
abstract member AppliesToEndpoints : System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.Endpoint> -> bool
Public Function AppliesToEndpoints (endpoints As IReadOnlyList(Of Endpoint)) As Boolean

Parameters

endpoints
IReadOnlyList<Endpoint>

The set of candidate Endpoint values.

Returns

true if the policy applies to any endpoint in endpoints, otherwise false.

Applies to