API version 14
iOSAndroidWindows
|
説明 |
FTPサーバとの接続を切断します。
|
|
|
呼出形式 |
var session = FtpSession.Close( )
|
|
|
戻り値 |
なし
|
|
|
引数 |
なし
|
|
|
例外 |
なし |
|
|
使用例 |
var session = FtpSession.Connect("ftp://example.com/");
session.SetEncoding("Shift_JIS");
session.ChangeDir("/path/to/directory")
var received = new ByteArray();
session.Get("foo.txt", received);
session.Close();
|
|
|
関連項目 |
Connectメソッド |
|