EndpointRouteBuilderExtensions.MapMethods 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, RequestDelegate) |
RouteEndpoint 지정된 HTTP 메서드 및 패턴에 IEndpointRouteBuilder 대한 HTTP 요청과 일치하는 에 을 추가합니다. |
MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, Delegate) |
RouteEndpoint 지정된 HTTP 메서드 및 패턴에 IEndpointRouteBuilder 대한 HTTP 요청과 일치하는 에 을 추가합니다. |
MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, RequestDelegate)
RouteEndpoint 지정된 HTTP 메서드 및 패턴에 IEndpointRouteBuilder 대한 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
매개 변수
- endpoints
- IEndpointRouteBuilder
IEndpointRouteBuilder 경로를 추가할 입니다.
- pattern
- String
경로 패턴입니다.
- httpMethods
- IEnumerable<String>
엔드포인트가 일치하는 HTTP 메서드입니다.
- requestDelegate
- RequestDelegate
엔드포인트가 일치할 때 실행되는 대리자입니다.
반환
IEndpointConventionBuilder 엔드포인트를 추가로 사용자 지정하는 데 사용할 수 있는 입니다.
적용 대상
MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, Delegate)
RouteEndpoint 지정된 HTTP 메서드 및 패턴에 IEndpointRouteBuilder 대한 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
매개 변수
- endpoints
- IEndpointRouteBuilder
IEndpointRouteBuilder 경로를 추가할 입니다.
- pattern
- String
경로 패턴입니다.
- httpMethods
- IEnumerable<String>
엔드포인트가 일치하는 HTTP 메서드입니다.
- handler
- Delegate
엔드포인트가 일치할 때 실행되는 대리자입니다.
반환
RouteHandlerBuilder 엔드포인트를 추가로 사용자 지정하는 데 사용할 수 있는 입니다.