| IRestClientPutTBody, TResult Method (String, String, TBody) |
Executes a PUT (update) for the specified object
Namespace:
SanteDB.Core.Http
Assembly:
SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.481-alpha
Syntax TResult Put<TBody, TResult>(
string url,
string contentType,
TBody body
)
Function Put(Of TBody, TResult) (
url As String,
contentType As String,
body As TBody
) As TResult
generic<typename TBody, typename TResult>
TResult Put(
String^ url,
String^ contentType,
TBody body
)
abstract Put :
url : string *
contentType : string *
body : 'TBody -> 'TResult
Parameters
- url
- Type: SystemString
The URL of the object to be updated - contentType
- Type: SystemString
The content/type of the body - body
- Type: TBody
The actual object/resource being updated
Type Parameters
- TBody
- The type of body
- TResult
- The expected return resource type from the server
Return Value
Type:
TResult[Missing <returns> documentation for "M:SanteDB.Core.Http.IRestClient.Put``2(System.String,System.String,``0)"]
See Also