You are here: Start » FIL.NET » Invoke.Ftp_ReceiveImage
Downloads an image from a remote server using FTP (File Transfer Protocol).
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void Ftp_ReceiveImage ( string inHostName, string inFtpFilePath, Optional<string> inUsername, Optional<string> inPassword, bool inUsePassiveMode, Optional<int> inTimeout, bool inAllowUntrusted, Optional<string> inCaCertFile, bool inLoadAlphaChannel, Fil.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inHostName | string | \"ftp://\" | URL address of the remote server. Default value: "ftp://". | |
![]() | inFtpFilePath | string | Location of the file 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. | ||
![]() | inLoadAlphaChannel | bool | Whether to load the alpha channel (if exists) as an additional image channel. | ||
![]() | outImage | Fil.Image | Image downloaded from the remote server. |