You are here: Start » FIL.NET » Invoke.Ftp_SendImage
Sends an image to a remote server using FTP (File Transfer Protocol).
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void Ftp_SendImage ( Fil.Image inImage, Optional<Fil.ImageFileFormat> inImageFileFormat, 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 | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Image to send. | ||
![]() | inImageFileFormat | Ftl.Optional<Fil.ImageFileFormat> | If Nil the format will be chosen on the basis of extension. Default value: ftl::NIL. | ||
![]() | inHostName | string | \"ftp://\" | URL address of the remote server. Default value: "ftp://". | |
![]() | inDestinationFileName | string | Path where an image 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. |