EndpointSelector.SelectAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
SelectAsync(HttpContext, CandidateSet) |
Sélectionne de manière asynchrone un dans Endpoint .CandidateSet |
SelectAsync(HttpContext, EndpointSelectorContext, CandidateSet) |
Sélectionne de manière asynchrone un dans Endpoint .CandidateSet |
SelectAsync(HttpContext, CandidateSet)
- Source:
- EndpointSelector.cs
Sélectionne de manière asynchrone un dans Endpoint .CandidateSet
public:
abstract System::Threading::Tasks::Task ^ SelectAsync(Microsoft::AspNetCore::Http::HttpContext ^ httpContext, Microsoft::AspNetCore::Routing::Matching::CandidateSet ^ candidates);
public abstract System.Threading.Tasks.Task SelectAsync (Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.Matching.CandidateSet candidates);
abstract member SelectAsync : Microsoft.AspNetCore.Http.HttpContext * Microsoft.AspNetCore.Routing.Matching.CandidateSet -> System.Threading.Tasks.Task
Public MustOverride Function SelectAsync (httpContext As HttpContext, candidates As CandidateSet) As Task
Paramètres
- httpContext
- HttpContext
HttpContext associé à la demande actuelle.
- candidates
- CandidateSet
L’CandidateSetopérateur
Retours
Task qui se termine de manière asynchrone une fois la sélection du point de terminaison terminée.
Remarques
Un EndpointSelector doit affecter le point de terminaison en appelant SetEndpoint(HttpContext, Endpoint) et en définissant RouteValues une fois qu’un point de terminaison est sélectionné.
S’applique à
SelectAsync(HttpContext, EndpointSelectorContext, CandidateSet)
Sélectionne de manière asynchrone un dans Endpoint .CandidateSet
public:
abstract System::Threading::Tasks::Task ^ SelectAsync(Microsoft::AspNetCore::Http::HttpContext ^ httpContext, Microsoft::AspNetCore::Routing::EndpointSelectorContext ^ context, Microsoft::AspNetCore::Routing::Matching::CandidateSet ^ candidates);
public abstract System.Threading.Tasks.Task SelectAsync (Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.EndpointSelectorContext context, Microsoft.AspNetCore.Routing.Matching.CandidateSet candidates);
abstract member SelectAsync : Microsoft.AspNetCore.Http.HttpContext * Microsoft.AspNetCore.Routing.EndpointSelectorContext * Microsoft.AspNetCore.Routing.Matching.CandidateSet -> System.Threading.Tasks.Task
Public MustOverride Function SelectAsync (httpContext As HttpContext, context As EndpointSelectorContext, candidates As CandidateSet) As Task
Paramètres
- httpContext
- HttpContext
HttpContext associé à la demande actuelle.
- context
- EndpointSelectorContext
EndpointSelectorContext associé à la demande actuelle.
- candidates
- CandidateSet
L’CandidateSetopérateur
Retours
Task qui se termine de manière asynchrone une fois la sélection du point de terminaison terminée.
Remarques
Un EndpointSelector doit affecter les Endpoint propriétés et RouteValues une fois qu’un point de terminaison est sélectionné.