Sdílet prostřednictvím


EndpointRouteBuilderExtensions.MapMethods Metoda

Definice

Přetížení

MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, RequestDelegate)

RouteEndpoint Přidá do objektu IEndpointRouteBuilder , který odpovídá požadavkům HTTP pro zadané metody a vzor HTTP.

MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, Delegate)

RouteEndpoint Přidá do objektu IEndpointRouteBuilder , který odpovídá požadavkům HTTP pro zadané metody a vzor HTTP.

MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, RequestDelegate)

Zdroj:
EndpointRouteBuilderExtensions.cs

RouteEndpoint Přidá do objektu IEndpointRouteBuilder , který odpovídá požadavkům HTTP pro zadané metody a vzor HTTP.

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

Parametry

endpoints
IEndpointRouteBuilder

Chcete-li IEndpointRouteBuilder přidat trasu do.

pattern
String

Vzor trasy.

httpMethods
IEnumerable<String>

Metody HTTP, které bude koncový bod shodovat.

requestDelegate
RequestDelegate

Delegát se spustil, když se koncový bod shoduje.

Návraty

Slouží IEndpointConventionBuilder k dalšímu přizpůsobení koncového bodu.

Platí pro

MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, Delegate)

Zdroj:
EndpointRouteBuilderExtensions.cs

RouteEndpoint Přidá do objektu IEndpointRouteBuilder , který odpovídá požadavkům HTTP pro zadané metody a vzor HTTP.

public static Microsoft.AspNetCore.Builder.RouteHandlerBuilder MapMethods (this Microsoft.AspNetCore.Routing.IEndpointRouteBuilder endpoints, string pattern, System.Collections.Generic.IEnumerable<string> httpMethods, Delegate handler);
static member MapMethods : Microsoft.AspNetCore.Routing.IEndpointRouteBuilder * string * seq<string> * Delegate -> Microsoft.AspNetCore.Builder.RouteHandlerBuilder
<Extension()>
Public Function MapMethods (endpoints As IEndpointRouteBuilder, pattern As String, httpMethods As IEnumerable(Of String), handler As Delegate) As RouteHandlerBuilder

Parametry

endpoints
IEndpointRouteBuilder

Chcete-li IEndpointRouteBuilder přidat trasu do.

pattern
String

Vzor trasy.

httpMethods
IEnumerable<String>

Metody HTTP, které bude koncový bod shodovat.

handler
Delegate

Delegát se spustil, když se koncový bod shoduje.

Návraty

Slouží RouteHandlerBuilder k dalšímu přizpůsobení koncového bodu.

Platí pro