FtpServers Property

The FTP servers that can be accessed by the script.

Syntax

Property FtpServers As Dictionary(Of String, VSFtpServer)

Parameters

None

Examples

IronPython

#Get ftp servers

#Convert .NET Dictionary to IronPython dict()
srvDict = dict(Host.ScriptData.FtpServers) 
servers = "\r\n".join(srvDict)


C#


Remarks