'Declaration Public Overloads Shared Sub Delete( _ ByVal hostname As String, _ ByVal port As Integer, _ ByVal username As String, _ ByVal password As String, _ ByVal authenticationMethod As AuthenticationMethod, _ ByVal verificationFlags As VerificationFlags, _ ByVal clientCertificate As Certificate, _ ByVal dataChannelProtection As DataChannelProtection, _ ByVal implicitAuthentication As Boolean, _ ByVal recursive As Boolean, _ ByVal proxy As ProxyClient, _ ByVal timeout As Integer, _ ByVal passiveTransfer As Boolean, _ ByVal defaultRepresentationType As RepresentationType, _ ByVal traceWriter As TextWriter, _ ByVal synchronizingObject As ISynchronizeInvoke, _ ByVal certificateReceivedCallback As QuickFtp.CertificateReceivedCallback, _ ByVal certificateRequiredCallback As QuickFtp.CertificateRequiredCallback, _ ByVal userParams As Object, _ ByVal transferMode As TransferMode, _ ByVal ParamArray filesToDelete() As String _ )
'Usage Dim hostname As String Dim port As Integer Dim username As String Dim password As String Dim authenticationMethod As AuthenticationMethod Dim verificationFlags As VerificationFlags Dim clientCertificate As Certificate Dim dataChannelProtection As DataChannelProtection Dim implicitAuthentication As Boolean Dim recursive As Boolean Dim proxy As ProxyClient Dim timeout As Integer Dim passiveTransfer As Boolean Dim defaultRepresentationType As RepresentationType Dim traceWriter As TextWriter Dim synchronizingObject As ISynchronizeInvoke Dim certificateReceivedCallback As QuickFtp.CertificateReceivedCallback Dim certificateRequiredCallback As QuickFtp.CertificateRequiredCallback Dim userParams As Object Dim transferMode As TransferMode Dim filesToDelete() As String QuickFtp.Delete(hostname, port, username, password, authenticationMethod, verificationFlags, clientCertificate, dataChannelProtection, implicitAuthentication, recursive, proxy, timeout, passiveTransfer, defaultRepresentationType, traceWriter, synchronizingObject, certificateReceivedCallback, certificateRequiredCallback, userParams, transferMode, filesToDelete)
public static void Delete( string hostname, int port, string username, string password, AuthenticationMethod authenticationMethod, VerificationFlags verificationFlags, Certificate clientCertificate, DataChannelProtection dataChannelProtection, bool implicitAuthentication, bool recursive, ProxyClient proxy, int timeout, bool passiveTransfer, RepresentationType defaultRepresentationType, TextWriter traceWriter, ISynchronizeInvoke synchronizingObject, QuickFtp.CertificateReceivedCallback certificateReceivedCallback, QuickFtp.CertificateRequiredCallback certificateRequiredCallback, object userParams, TransferMode transferMode, params string[] filesToDelete )
Parameters
- hostname
- The hostname of the FTP server to connect to. An IP address can also be used.
- port
- The port number on the FTP server to use.
- username
- The username used to connect to the FTP server.
- password
- The password used to connect to the FTP server.
- authenticationMethod
- The authentication method used to connect to the FTP server. Not applicable to the Compact Framework version.
- verificationFlags
- The verification flags used to verify the FTP server's certificate. Not applicable to the Compact Framework version.
- clientCertificate
- The certificate used when connecting to the FTP server. Can be null. Not applicable to the Compact Framework version.
- dataChannelProtection
- The DataChannelProtection used during the communication. Ignored if implicitAuthentication is true. Not applicable to the Compact Framework version.
- implicitAuthentication
- If true, the SSL handshake occurs at the very beginning of the connection; otherwise, the AUTH command is sent after the Welcome message to initiate the SSL handshake. Not applicable to the Compact Framework version.
- recursive
- Boolean value indicating whether files contained within sub-folders should be deleted from the FTP host.
- proxy
- The active proxy client for connecting to the FTP server.
- timeout
- The period of time, in seconds, after which an FTP operation should timeout.
- passiveTransfer
- Boolean value indicating whether the data connection should be established by the FTP server rather than by the client-side.
- defaultRepresentationType
- The default value indicating how the data is transferred to and from the FTP server.
- traceWriter
- The System.IO.TextWriter which will trace the communications between the client-side and the FTP server.
- synchronizingObject
- The object used to automatically redirect events on the main UI thread. Not applicable to the Compact Framework version.
- certificateReceivedCallback
- Delegate for CertificateReceived notification. Not applicable to the Compact Framework version.
- certificateRequiredCallback
- Delegate for CertificateRequired notification. Not applicable to the Compact Framework version.
- userParams
- Opaque data that will be passed back to the event handler when an event is raised.
- transferMode
The transfer mode used to send data to and from an FTP server.
- filesToDelete
- A list of strings representing the files to delete. File paths may not start with a \ or a /. If a path represents a folder, it must end with a / or a \.