You are here: Start » FIL.NET » 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 | |
---|---|---|---|---|---|
![]() | inText | string | Text to send. | ||
![]() | inHostName | string | \"ftp://\" | URL address of the remote server. Default value: "ftp://". | |
![]() | inDestinationFileName | string | Path where a text file should be saved on a remote server. | ||
![]() | inUsername | Ftl.Optional<string> | User name needed to log in. Default value: ftl::NIL. | ||
![]() | inPassword | Ftl.Optional<string> | Password associated with a user name. Default value: ftl::NIL. | ||
![]() | inUsePassiveMode | bool | Protocol communication mode. May be necessary when using a firewall. | ||
![]() | inTimeout | Ftl.Optional<int> | <0, INF> | Request timeout in seconds. Default value: ftl::NIL. | |
![]() | inAllowUntrusted | bool | False | Whether or not to allow untrusted SSL certificates. Default value: False. | |
![]() | inCaCertFile | Ftl.Optional<string> | File holding one or more certificates to verify the peer with. Default value: ftl::NIL. |