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

Invoke.Ftp_SendString

Sends a string to a remote serve using FTP (File Transfer Protocol).

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void Ftp_SendString
(
	string inText,
	string inHostName,
	string inDestinationFileName,
	Optional<string> inUsername,
	Optional<string> inPassword,
	bool inUsePassiveMode,
	Optional<int> inTimeout,
	bool inAllowUntrusted,
	Optional<string> inCaCertFile
)

Parameters

Name Type Range Default Description
inTextstringText to send.
inHostNamestring\"ftp://\"URL address of the remote server. Default value: "ftp://".
inDestinationFileNamestringPath where a text file should be saved on a remote server.
inUsernameFtl.Optional<string>User name needed to log in. Default value: ftl::NIL.
inPasswordFtl.Optional<string>Password associated with a user name. Default value: ftl::NIL.
inUsePassiveModeboolProtocol communication mode. May be necessary when using a firewall.
inTimeoutFtl.Optional<int><0, INF>Request timeout in seconds. Default value: ftl::NIL.
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.

See also