RequestDelegateRouteBuilderExtensions.MapPut Yöntem

Tanım

Aşırı Yüklemeler

MapPut(IRouteBuilder, String, RequestDelegate)

öğesine yalnızca verilen templateve handleriçin HTTP PUT istekleriyle eşleşen bir yol IRouteBuilder ekler.

MapPut(IRouteBuilder, String, Action<IApplicationBuilder>)

öğesine yalnızca verilen templateve actioniçin HTTP PUT istekleriyle eşleşen bir yol IRouteBuilder ekler.

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

öğesine yalnızca verilen templateve handleriçin HTTP PUT istekleriyle eşleşen bir yol IRouteBuilder ekler.

MapPut(IRouteBuilder, String, RequestDelegate)

öğesine yalnızca verilen templateve handleriçin HTTP PUT istekleriyle eşleşen bir yol IRouteBuilder ekler.

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

Parametreler

template
String

Yol şablonu.

handler
RequestDelegate

Yol RequestDelegate işleyicisi.

Döndürülenler

Bu işlem tamamlandıktan sonra öğesine builder başvuru.

Şunlara uygulanır

MapPut(IRouteBuilder, String, Action<IApplicationBuilder>)

öğesine yalnızca verilen templateve actioniçin HTTP PUT istekleriyle eşleşen bir yol IRouteBuilder ekler.

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

Parametreler

template
String

Yol şablonu.

action
Action<IApplicationBuilder>

uygulamasına IApplicationBuilderuygulanacak eylem.

Döndürülenler

Bu işlem tamamlandıktan sonra öğesine builder başvuru.

Şunlara uygulanır

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

öğesine yalnızca verilen templateve handleriçin HTTP PUT istekleriyle eşleşen bir yol IRouteBuilder ekler.

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

Parametreler

template
String

Yol şablonu.

handler
Func<HttpRequest,HttpResponse,RouteData,Task>

Yol işleyicisi.

Döndürülenler

Bu işlem tamamlandıktan sonra öğesine builder başvuru.

Şunlara uygulanır