Поделиться через


Метод FtpClientConnection.Close

Closes the FTP connection.

Пространство имен:  Microsoft.SqlServer.Dts.Runtime
Сборка:  Microsoft.SqlServer.ManagedDTS (в Microsoft.SqlServer.ManagedDTS.dll)

Синтаксис

'Декларация
Public Sub Close
'Применение
Dim instance As FtpClientConnection

instance.Close()
public void Close()
public:
void Close()
member Close : unit -> unit
public function Close()

Примеры

The following code example checks to see if the FtpClientConnection is connection. If so, the connection is closed using Close.

// Close the connection to the FTP Server, if it is connected.
if (ftpClientConnection != null)
    ftpClientConnection.Close();
' Close the connection to the FTP Server, if it is connected.
If Not ftpClientConnection Is Nothing Then
    ftpClientConnection.Close()
End If

См. также

Справочник

FtpClientConnection Класс

Пространство имен Microsoft.SqlServer.Dts.Runtime