RequestExecutePost Method |
Execute HTTP POST request.
Namespace:
Dundas.BI.Data.DataProviders
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public Response ExecutePost(
string body,
string encoding = "utf-8",
string mediaType = "text/plain"
)
Public Function ExecutePost (
body As String,
Optional encoding As String = "utf-8",
Optional mediaType As String = "text/plain"
) As Response
public:
Response^ ExecutePost(
String^ body,
String^ encoding = L"utf-8",
String^ mediaType = L"text/plain"
)
member ExecutePost :
body : string *
?encoding : string *
?mediaType : string
(* Defaults:
let _encoding = defaultArg encoding "utf-8"
let _mediaType = defaultArg mediaType "text/plain"
*)
-> Response
Parameters
- body
- Type: SystemString
The body. - encoding (Optional)
- Type: SystemString
The encoding. - mediaType (Optional)
- Type: SystemString
The media type.
Return Value
Type:
ResponseA
Response object.
See Also