Partager via


EndpointRouteBuilderExtensions.Map Méthode

Définition

Surcharges

Map(IEndpointRouteBuilder, RoutePattern, RequestDelegate)

Ajoute un RouteEndpoint au qui correspond aux IEndpointRouteBuilder requêtes HTTP pour le modèle spécifié.

Map(IEndpointRouteBuilder, RoutePattern, Delegate)

Ajoute un RouteEndpoint au qui correspond aux IEndpointRouteBuilder requêtes HTTP pour le modèle spécifié.

Map(IEndpointRouteBuilder, String, RequestDelegate)

Ajoute un RouteEndpoint au qui correspond aux IEndpointRouteBuilder requêtes HTTP pour le modèle spécifié.

Map(IEndpointRouteBuilder, String, Delegate)

Ajoute un RouteEndpoint au qui correspond aux IEndpointRouteBuilder requêtes HTTP pour le modèle spécifié.

Map(IEndpointRouteBuilder, RoutePattern, RequestDelegate)

Source:
EndpointRouteBuilderExtensions.cs

Ajoute un RouteEndpoint au qui correspond aux IEndpointRouteBuilder requêtes HTTP pour le modèle spécifié.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Builder::IEndpointConventionBuilder ^ Map(Microsoft::AspNetCore::Routing::IEndpointRouteBuilder ^ endpoints, Microsoft::AspNetCore::Routing::Patterns::RoutePattern ^ pattern, Microsoft::AspNetCore::Http::RequestDelegate ^ requestDelegate);
public static Microsoft.AspNetCore.Builder.IEndpointConventionBuilder Map (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, Microsoft.AspNetCore.Routing.Patterns.RoutePattern pattern, Microsoft.AspNetCore.Http.RequestDelegate requestDelegate);
static member Map : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * Microsoft.AspNetCore.Routing.Patterns.RoutePattern * Microsoft.AspNetCore.Http.RequestDelegate -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
<Extension()>
Public Function Map (endpoints As IEndpointRouteBuilder, pattern As RoutePattern, requestDelegate As RequestDelegate) As IEndpointConventionBuilder

Paramètres

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder à laquelle ajouter l’itinéraire.

pattern
RoutePattern

Modèle d’itinéraire.

requestDelegate
RequestDelegate

Délégué exécuté lorsque le point de terminaison est mis en correspondance.

Retours

IEndpointConventionBuilder qui peut être utilisé pour personnaliser davantage le point de terminaison.

S’applique à

Map(IEndpointRouteBuilder, RoutePattern, Delegate)

Source:
EndpointRouteBuilderExtensions.cs

Ajoute un RouteEndpoint au qui correspond aux IEndpointRouteBuilder requêtes HTTP pour le modèle spécifié.

public static Microsoft.AspNetCore.Builder.RouteHandlerBuilder Map (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, Microsoft.AspNetCore.Routing.Patterns.RoutePattern pattern, Delegate handler);
static member Map : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * Microsoft.AspNetCore.Routing.Patterns.RoutePattern * Delegate -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder
<Extension()>
Public Function Map (endpoints As IEndpointRouteBuilder, pattern As RoutePattern, handler As Delegate) As RouteHandlerBuilder

Paramètres

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder à laquelle ajouter l’itinéraire.

pattern
RoutePattern

Modèle d’itinéraire.

handler
Delegate

Délégué exécuté lorsque le point de terminaison est mis en correspondance.

Retours

RouteHandlerBuilder qui peut être utilisé pour personnaliser davantage le point de terminaison.

S’applique à

Map(IEndpointRouteBuilder, String, RequestDelegate)

Source:
EndpointRouteBuilderExtensions.cs

Ajoute un RouteEndpoint au qui correspond aux IEndpointRouteBuilder requêtes HTTP pour le modèle spécifié.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Builder::IEndpointConventionBuilder ^ Map(Microsoft::AspNetCore::Routing::IEndpointRouteBuilder ^ endpoints, System::String ^ pattern, Microsoft::AspNetCore::Http::RequestDelegate ^ requestDelegate);
public static Microsoft.AspNetCore.Builder.IEndpointConventionBuilder Map (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, Microsoft.AspNetCore.Http.RequestDelegate requestDelegate);
static member Map : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * string * Microsoft.AspNetCore.Http.RequestDelegate -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
<Extension()>
Public Function Map (endpoints As IEndpointRouteBuilder, pattern As String, requestDelegate As RequestDelegate) As IEndpointConventionBuilder

Paramètres

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder à laquelle ajouter l’itinéraire.

pattern
String

Modèle d’itinéraire.

requestDelegate
RequestDelegate

Délégué exécuté lorsque le point de terminaison est mis en correspondance.

Retours

IEndpointConventionBuilder qui peut être utilisé pour personnaliser davantage le point de terminaison.

S’applique à

Map(IEndpointRouteBuilder, String, Delegate)

Source:
EndpointRouteBuilderExtensions.cs

Ajoute un RouteEndpoint au qui correspond aux IEndpointRouteBuilder requêtes HTTP pour le modèle spécifié.

public static Microsoft.AspNetCore.Builder.RouteHandlerBuilder Map (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, Delegate handler);
static member Map : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * string * Delegate -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder
<Extension()>
Public Function Map (endpoints As IEndpointRouteBuilder, pattern As String, handler As Delegate) As RouteHandlerBuilder

Paramètres

endpoints
IEndpointRouteBuilder

IEndpointRouteBuilder à laquelle ajouter l’itinéraire.

pattern
String

Modèle d’itinéraire.

handler
Delegate

Délégué exécuté lorsque le point de terminaison est mis en correspondance.

Retours

RouteHandlerBuilder qui peut être utilisé pour personnaliser davantage le point de terminaison.

S’applique à