edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Begins an asynchronous request to upload a local file to the FTP server in the current working directory. Allows appending if current file exists.

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
[ObsoleteAttribute("Use BeginUploadFile(string, string, WriteMode, AsyncCallback, object)")]
public virtual IAsyncResult BeginUploadFile(
	string localPath,
	string remoteFile,
	bool append,
	AsyncCallback callback,
	Object state
)
Visual Basic
<ObsoleteAttribute("Use BeginUploadFile(string, string, WriteMode, AsyncCallback, object)")> _
Public Overridable Function BeginUploadFile ( _
	localPath As String, _
	remoteFile As String, _
	append As Boolean, _
	callback As AsyncCallback, _
	state As Object _
) As IAsyncResult
Visual C++
[ObsoleteAttribute(L"Use BeginUploadFile(string, string, WriteMode, AsyncCallback, object)")]
public:
virtual IAsyncResult^ BeginUploadFile(
	String^ localPath, 
	String^ remoteFile, 
	bool append, 
	AsyncCallback^ callback, 
	Object^ state
)

Parameters

localPath
Type: System..::..String
Path of the local file.
remoteFile
Type: System..::..String
Name of remote file in current working directory.
append
Type: System..::..Boolean
true if appending, false otherwise.
callback
Type: System..::..AsyncCallback
The AsyncCallback delegate.
state
Type: System..::..Object
An object that contains state information for this request.

Return Value

An FTPTask that references the asynchronous upload.

Remarks

You can create a callback method that implements the AsyncCallback delegate and pass its name to the BeginUploadFile method. The state argument may be used to pass in data that will be passed to the callback method.

For more information please refer to the synchronous version of this method, UploadFile(String, String, Boolean).

See Also