You are here: Start » FIL.NET » Invoke.Http_SendRequest_DELETE_ByteBuffer

Invoke.Http_SendRequest_DELETE_ByteBuffer

Sends a DELETE request to server and receives a binary answer.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void Http_SendRequest_DELETE_ByteBuffer
(
	string inUrl,
	List<string> inHeaders,
	List<string> inHeadersData,
	List<string> inFields,
	List<string> inFieldsData,
	int inTimeout,
	bool inAllowUntrusted,
	Optional<string> inCaCertFile,
	Conditional<Fil.ByteBuffer> outAnswer,
	out int outResponseCode
)

Parameters

Name Type Range Default Description
inUrlstringURL of request. Without parameters.
inHeadersSystem.Collections.Generic.List<string>Request headers to send. They will be automatically encoded.
inHeadersDataSystem.Collections.Generic.List<string>Request headers to send. They will be automatically encoded.
inFieldsSystem.Collections.Generic.List<string>Request data to send. It will be automatically encoded.
inFieldsDataSystem.Collections.Generic.List<string>Request data to send. It will be automatically encoded.
inTimeoutint<0, INF>60Request timeout in seconds. Default value: 60.
inAllowUntrustedboolFalseWhether or not to allow untrusted SSL certificates. Default value: False.
inCaCertFileFtl.Optional<string>File holding one or more certificates to verify the peer with. Default value: ftl::NIL.
outAnswerFtl.Conditional<Fil.ByteBuffer>Answer as binary byte buffer.
outResponseCodeintAnswer code. Typically 200 for OK.

See also