Compartir a través de


FtpClientConnection.ServerPassword Propiedad

Sets the password for the server specified in the ServerName property. This property is write-only.

Espacio de nombres:  Microsoft.SqlServer.Dts.Runtime
Ensamblado:  Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)

Sintaxis

'Declaración
Public WriteOnly Property ServerPassword As String 
    Set
'Uso
Dim instance As FtpClientConnection 
Dim value As String

instance.ServerPassword = value
public string ServerPassword { set; }
public:
property String^ ServerPassword {
    void set (String^ value);
}
member ServerPassword : string with get, set
function set ServerPassword (value : String)

Valor de la propiedad

Tipo: System.String

Ejemplos

The following code example shows how to set the password.

Package pkg = new Package();
FtpClientConnection ftp = null;
Connections conns = pkg.Connections;
ConnectionManager cm = conns.Add("FTP");
cm.Properties["ServerPassword"].SetValue(cm, "thepassword");
Dim pkg As Package =  New Package() 
Dim ftp As FtpClientConnection =  Nothing 
Dim conns As Connections =  pkg.Connections 
Dim cm As ConnectionManager =  conns.Add("FTP") 
cm.Properties("ServerPassword").SetValue(cm, "thepassword")

Vea también

Referencia

FtpClientConnection Clase

Espacio de nombres Microsoft.SqlServer.Dts.Runtime