Method Patch
Patch(string, Delegate?)
Creates a route that responds to HTTP PATCH requests.
public static Route Patch(string path, Delegate? action)
Parameters
path
stringThe URL path for the route.
action
DelegateThe action to be executed when the route is matched.
Returns
Patch(string, RouteAction)
Creates a route that responds to HTTP PATCH requests.
public static Route Patch(string path, RouteAction action)
Parameters
path
stringThe URL path for the route.
action
RouteActionThe action to be executed when the route is matched.