 | IRestClientPostTBody, TResult(String, String, TBody) Method |
Executes a post against the url
Namespace: SanteDB.Core.HttpAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
SyntaxTResult Post<TBody, TResult>(
string url,
string contentType,
TBody body
)
Function Post(Of TBody, TResult) (
url As String,
contentType As String,
body As TBody
) As TResult
generic<typename TBody, typename TResult>
TResult Post(
String^ url,
String^ contentType,
TBody body
)
abstract Post :
url : string *
contentType : string *
body : 'TBody -> 'TResult Parameters
- url String
- The URL to which the data should be posted
- contentType String
- The content/type of body
- body TBody
- The contents/object submitted to the server
Type Parameters
- TBody
- The type of body
- TResult
- The expected result type
Return Value
TResult[Missing <returns> documentation for "M:SanteDB.Core.Http.IRestClient.Post``2(System.String,System.String,``0)"]
See Also