IApiClientTransportDeleteAsync Method (String, Byte, WebHeaderCollection) |
Send a DELETE request with body content.
Namespace:
ArangoDBNetStandard.Transport
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax Task<IApiClientResponse> DeleteAsync(
string requestUri,
byte[] content,
WebHeaderCollection webHeaderCollection = null
)
Function DeleteAsync (
requestUri As String,
content As Byte(),
Optional webHeaderCollection As WebHeaderCollection = Nothing
) As Task(Of IApiClientResponse)
Task<IApiClientResponse^>^ DeleteAsync(
String^ requestUri,
array<unsigned char>^ content,
WebHeaderCollection^ webHeaderCollection = nullptr
)
abstract DeleteAsync :
requestUri : string *
content : byte[] *
?webHeaderCollection : WebHeaderCollection
(* Defaults:
let _webHeaderCollection = defaultArg webHeaderCollection null
*)
-> Task<IApiClientResponse>
Parameters
- requestUri
- Type: SystemString
- content
- Type: SystemByte
- webHeaderCollection (Optional)
- Type: System.NetWebHeaderCollection
Object containing a dictionary of Header keys and values.
Return Value
Type:
TaskIApiClientResponseSee Also