| IRestClientPatchTPatch Method (String, String, String, TPatch) |
Instructs the server to perform a PATCH operation
Namespace:
SanteDB.Core.Http
Assembly:
SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.481-alpha
Syntax string Patch<TPatch>(
string url,
string contentType,
string ifMatch,
TPatch patch
)
Function Patch(Of TPatch) (
url As String,
contentType As String,
ifMatch As String,
patch As TPatch
) As String
generic<typename TPatch>
String^ Patch(
String^ url,
String^ contentType,
String^ ifMatch,
TPatch patch
)
abstract Patch :
url : string *
contentType : string *
ifMatch : string *
patch : 'TPatch -> string
Parameters
- url
- Type: SystemString
The path on which the patch should be applied - contentType
- Type: SystemString
The content/type of th epatch - ifMatch
- Type: SystemString
Target version/etag to patch - patch
- Type: TPatch
The patch to apply
Type Parameters
- TPatch
- The type of patch being applied
Return Value
Type:
String[Missing <returns> documentation for "M:SanteDB.Core.Http.IRestClient.Patch``1(System.String,System.String,System.String,``0)"]
See Also