 | IRestClientInvokeTBody, TResult(String, String, String, TBody) Method |
Invokes the specified method against the URL provided
Namespace: SanteDB.Core.HttpAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
SyntaxTResult Invoke<TBody, TResult>(
string method,
string url,
string contentType,
TBody body
)
Function Invoke(Of TBody, TResult) (
method As String,
url As String,
contentType As String,
body As TBody
) As TResult
generic<typename TBody, typename TResult>
TResult Invoke(
String^ method,
String^ url,
String^ contentType,
TBody body
)
abstract Invoke :
method : string *
url : string *
contentType : string *
body : 'TBody -> 'TResult Parameters
- method String
- The HTTP method wich should be executed
- url String
- The URL which should be invoked
- contentType String
- The content/type of body
- body TBody
- The contents of the body
Type Parameters
- TBody
- The type of object being submitted to the server
- TResult
- The expected response from the server
Return Value
TResult[Missing <returns> documentation for "M:SanteDB.Core.Http.IRestClient.Invoke``2(System.String,System.String,System.String,``0)"]
See Also