FtpClientConnection.ServerPassword プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ServerName プロパティで指定したサーバーのパスワードを設定します。 このプロパティは書き込み専用です。
public:
property System::String ^ ServerPassword { void set(System::String ^ value); };
public string ServerPassword { set; }
member this.ServerPassword : string
Public Property ServerPassword As String
プロパティ値
ServerName プロパティで指定したサーバーのパスワードです。
例
次のコード例では、パスワードを設定します。
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")