 | IRestClientPatchTPatch(String, String, String, TPatch) Method |
Instructs the server to perform a PATCH operation
Namespace: SanteDB.Core.HttpAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
Syntaxstring 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 String
- The path on which the patch should be applied
- contentType String
- The content/type of th epatch
- ifMatch String
- Target version/etag to patch
- patch TPatch
- The patch to apply
Type Parameters
- TPatch
- The type of patch being applied
Return Value
String[Missing <returns> documentation for "M:SanteDB.Core.Http.IRestClient.Patch``1(System.String,System.String,System.String,``0)"]
See Also