FtpClient.EnableThreadSafeDataConnections Property

System.Net.FtpClient

Collapse image Expand Image Copy image CopyHover image
When this value is set to true (default) the control connection is cloned and a new connection the server is established for the data channel operation. This is a thread safe approach to make asynchronous operations on a single control connection transparent to the developer.

Namespace: System.Net.FtpClient
Assembly: System.Net.FtpClient (in System.Net.FtpClient.dll) Version: 1.0.5064.17461

Syntax

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

Property Value

Type: Boolean

Implements

IFtpClient..::..EnableThreadSafeDataConnections

See Also