RequestDelegateRouteBuilderExtensions.MapPut 方法

定義

多載

MapPut(IRouteBuilder, String, RequestDelegate)

將路由加入至 IRouteBuilder ,只符合指定 template 之 的 HTTP PUT 要求和 handler

MapPut(IRouteBuilder, String, Action<IApplicationBuilder>)

將路由加入至 IRouteBuilder ,只符合指定 template 之 的 HTTP PUT 要求和 action

MapPut(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>)

將路由加入至 IRouteBuilder ,只符合指定 template 之 的 HTTP PUT 要求和 handler

MapPut(IRouteBuilder, String, RequestDelegate)

將路由加入至 IRouteBuilder ,只符合指定 template 之 的 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

參數

template
String

路由範本。

handler
RequestDelegate

RequestDelegate路由處理常式。

傳回

此作業完成之後的 builder 參考。

適用於

MapPut(IRouteBuilder, String, Action<IApplicationBuilder>)

將路由加入至 IRouteBuilder ,只符合指定 template 之 的 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

參數

template
String

路由範本。

action
Action<IApplicationBuilder>

要套用至 的 IApplicationBuilder 動作。

傳回

此作業完成之後的 builder 參考。

適用於

MapPut(IRouteBuilder, String, Func<HttpRequest,HttpResponse,RouteData,Task>)

將路由加入至 IRouteBuilder ,只符合指定 template 之 的 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

參數

template
String

路由範本。

handler
Func<HttpRequest,HttpResponse,RouteData,Task>

路由處理常式。

傳回

此作業完成之後的 builder 參考。

適用於