Gets/Sets the current connection type.

Namespace: Jscape.Ftp
Assembly: Jscape.Ftp (in Jscape.Ftp.dll) Version: 2.4.5.0

Syntax

C#
public Ftp..::..ConnectionStrategy ConnectionType { get; set; }
Visual Basic
Public Property ConnectionType As Ftp..::..ConnectionStrategy
	Get
	Set
Visual C++
public:
property Ftp..::..ConnectionStrategy^ ConnectionType {
	Ftp..::..ConnectionStrategy^ get ();
	void set (Ftp..::..ConnectionStrategy^ value);
}

Examples

This example displays the current connection type.
CopyC#
System.Console.WriteLine("Connection type: " + myFtp.ConnectionType);

Copy 
System.Console.WriteLine("Connection type: " + myFtp.ConnectionType)

See Also