共用方式為


MatcherPolicy.ContainsDynamicEndpoints(IReadOnlyList<Endpoint>) 方法

定義

傳回值,指出提供的 endpoints 是否包含一或多個動態端點。

protected:
 static bool ContainsDynamicEndpoints(System::Collections::Generic::IReadOnlyList<Microsoft::AspNetCore::Http::Endpoint ^> ^ endpoints);
protected static bool ContainsDynamicEndpoints (System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.Endpoint> endpoints);
static member ContainsDynamicEndpoints : System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.Endpoint> -> bool
Protected Shared Function ContainsDynamicEndpoints (endpoints As IReadOnlyList(Of Endpoint)) As Boolean

參數

endpoints
IReadOnlyList<Endpoint>

端點集。

傳回

true 如果找到動態端點,則為 ;否則會傳 false 回 。

備註

存在 IDynamicEndpointMetadata 表示 在處理 IEndpointSelectorPolicy 期間可能取代的端點。

INodeBuilderPolicy 實作也應該實 IEndpointSelectorPolicy 作,並在節點包含動態端點時使用其 IEndpointSelectorPolicy 實作。 INodeBuilderPolicy 實作依賴根據靜態端點集的資料快取。 當端點以動態方式取代時,就不可能這樣做。

適用於