|
ModelControllerT, UPatch Method
|
Updates an existing Record.
Namespace: GSF.Web.ModelAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.207-beta
Syntax [RouteAttribute("Update")]
[HttpPatchAttribute]
public virtual IHttpActionResult Patch(
[FromBodyAttribute] U record
)
<RouteAttribute("Update")>
<HttpPatchAttribute>
Public Overridable Function Patch (
<FromBodyAttribute> record As U
) As IHttpActionResult
public:
[RouteAttribute(L"Update")]
[HttpPatchAttribute]
virtual IHttpActionResult^ Patch(
[FromBodyAttribute] U record
)
[<RouteAttribute("Update")>]
[<HttpPatchAttribute>]
abstract Patch :
[<FromBodyAttribute>] record : 'U -> IHttpActionResult
[<RouteAttribute("Update")>]
[<HttpPatchAttribute>]
override Patch :
[<FromBodyAttribute>] record : 'U -> IHttpActionResult
View SourceParameters
- record U
- The U record to be updated.
Return Value
IHttpActionResultIHttpActionResult containing the updated record or
ExceptionSee Also