edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Flag to enable the use of keep alive messages during data transfers.

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
public bool KeepAliveTransfer { get; set; }
Visual Basic
Public Property KeepAliveTransfer As Boolean
	Get
	Set
Visual C++
public:
property bool KeepAliveTransfer {
	bool get ();
	void set (bool value);
}

Remarks

During very large transfers some servers timeout, meaning that the transfer is not correctly completed. Most servers can't cope with keep alives being sent during a transfer, so only set this property if you are having timeout problems with very large transfers, and you can't increase the timeout on the server. Use with caution - this may cause messages to arrive out of order. Note that the KeepAlivePeriodSecs property is used to set the interval between keep alives.

See Also