| 
            
              ModelControllerT, UPatch Method
             | 
          
        
        
            Updates an existing Record.
            
        
        Namespace: GSF.Web.ModelAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.258-beta
Syntax[RouteAttribute("Update")]
[HttpPatchAttribute]
public virtual IHttpActionResult Patch(
	[FromBodyAttribute] U record
)<RouteAttribute("Update")>
<HttpPatchAttribute>
Public Overridable Function Patch ( 
	<FromBodyAttribute> record As U
) As IHttpActionResultpublic:
[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 
Exception
See Also