Dart.Ftp 名前空間 > Ftp クラス > Authenticate メソッド : Authenticate() メソッド |
Public Overloads Function Authenticate() As List(Of Response)
public List<Response> Authenticate()
このメソッドはConnectの後に使用できます。そうしない場合は、他のログイン手法を使用する必要があります。
ログインにはFtpSession.Username、FtpSession.Password、およびFtpSession.Accountが使用されます。 Session.Security.EncryptionControl == EncryptionControl.Explicitの場合は、ログインする前にSSL暗号化がネゴシエートされます。
private void getFile() { // サーバーからファイルを取得します。 ftp1.Session.RemoteEndPoint.HostNameOrAddress = myServer; ftp1.Session.Username = myUsername; ftp1.Session.Password = myPassword; ftp1.Connect(); ftp1.Authenticate(); ftp1.Get("myFile.pdf", myLocalDirectory + "\\myFile.pdf", Synchronize.Off); ftp1.Close(); } private void ftp1_Progress(object sender, ProgressEventArgs e) { // 進行状況情報(処理、ファイル名、ファイルの位置、ファイルの長さ)を表示します。 string s = (e.Item.Action == CopyAction.Get) ? "Getting " : "Putting "; s += e.Item.RemotePath + " (" + e.Item.Position.ToString() + " of " + e.Item.Length.ToString() + ")"; showProgress(s); }
Private Sub getFile() ' サーバーからファイルを取得します。 ftp1.Session.RemoteEndPoint.HostNameOrAddress = myServer ftp1.Session.Username = myUsername ftp1.Session.Password = myPassword ftp1.Connect() ftp1.Authenticate() ftp1.Get("myFile.pdf", myLocalDirectory & "\myFile.pdf", Synchronize.Off) ftp1.Close() End Sub Private Sub ftp1_Progress(ByVal sender As Object, ByVal e As ProgressEventArgs) Handles ftp1.Progress ' 進行状況情報(処理、ファイル名、ファイルの位置、ファイルの長さ)を表示します。 Dim s As String s = If((e.Item.Action = CopyAction.Get), "Getting ", "Putting ") s &= e.Item.RemotePath & " (" & e.Item.Position.ToString() & " of " & e.Item.Length.ToString() & ")" showProgress(s) End Sub