RequestDelegateRouteBuilderExtensions.MapPut 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
MapPut(IRouteBuilder, String, RequestDelegate) |
지정된 |
MapPut(IRouteBuilder, String, Action<IApplicationBuilder>) |
지정된 |
MapPut(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>) |
지정된 |
MapPut(IRouteBuilder, String, RequestDelegate)
지정된 template
및 에 IRouteBuilder 대한 HTTP PUT 요청과handler
만 일치하는 에 경로를 추가합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapPut(Microsoft::AspNetCore::Routing::IRouteBuilder ^ builder, System::String ^ template, Microsoft::AspNetCore::Http::RequestDelegate ^ handler);
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapPut (this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Microsoft.AspNetCore.Http.RequestDelegate handler);
static member MapPut : Microsoft.AspNetCore.Routing.IRouteBuilder * string * Microsoft.AspNetCore.Http.RequestDelegate -> Microsoft.AspNetCore.Routing.IRouteBuilder
<Extension()>
Public Function MapPut (builder As IRouteBuilder, template As String, handler As RequestDelegate) As IRouteBuilder
매개 변수
- builder
- IRouteBuilder
- template
- String
경로 템플릿입니다.
- handler
- RequestDelegate
RequestDelegate 경로 처리기입니다.
반환
이 작업이 완료된 후 에 builder
대한 참조입니다.
적용 대상
MapPut(IRouteBuilder, String, Action<IApplicationBuilder>)
지정된 template
및 에 IRouteBuilder 대한 HTTP PUT 요청과action
만 일치하는 에 경로를 추가합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapPut(Microsoft::AspNetCore::Routing::IRouteBuilder ^ builder, System::String ^ template, Action<Microsoft::AspNetCore::Builder::IApplicationBuilder ^> ^ action);
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapPut (this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action);
static member MapPut : Microsoft.AspNetCore.Routing.IRouteBuilder * string * Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> -> Microsoft.AspNetCore.Routing.IRouteBuilder
<Extension()>
Public Function MapPut (builder As IRouteBuilder, template As String, action As Action(Of IApplicationBuilder)) As IRouteBuilder
매개 변수
- builder
- IRouteBuilder
- template
- String
경로 템플릿입니다.
- action
- Action<IApplicationBuilder>
에 적용할 작업입니다 IApplicationBuilder.
반환
이 작업이 완료된 후 에 builder
대한 참조입니다.
적용 대상
MapPut(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>)
지정된 template
및 에 IRouteBuilder 대한 HTTP PUT 요청과handler
만 일치하는 에 경로를 추가합니다.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Routing::IRouteBuilder ^ MapPut(Microsoft::AspNetCore::Routing::IRouteBuilder ^ builder, System::String ^ template, Func<Microsoft::AspNetCore::Http::HttpRequest ^, Microsoft::AspNetCore::Http::HttpResponse ^, Microsoft::AspNetCore::Routing::RouteData ^, System::Threading::Tasks::Task ^> ^ handler);
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapPut (this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Func<Microsoft.AspNetCore.Http.HttpRequest,Microsoft.AspNetCore.Http.HttpResponse,Microsoft.AspNetCore.Routing.RouteData,System.Threading.Tasks.Task> handler);
static member MapPut : Microsoft.AspNetCore.Routing.IRouteBuilder * string * Func<Microsoft.AspNetCore.Http.HttpRequest, Microsoft.AspNetCore.Http.HttpResponse, Microsoft.AspNetCore.Routing.RouteData, System.Threading.Tasks.Task> -> Microsoft.AspNetCore.Routing.IRouteBuilder
<Extension()>
Public Function MapPut (builder As IRouteBuilder, template As String, handler As Func(Of HttpRequest, HttpResponse, RouteData, Task)) As IRouteBuilder
매개 변수
- builder
- IRouteBuilder
- template
- String
경로 템플릿입니다.
- handler
- Func<HttpRequest,HttpResponse,RouteData,Task>
경로 처리기입니다.
반환
이 작업이 완료된 후 에 builder
대한 참조입니다.