edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Completes the asynchronous operation started in BeginGetWorkingDirectory(AsyncCallback, Object).

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

Syntax

C#
[ObsoleteAttribute("Use FTPConnection.ServerDirectory.")]
public virtual string EndGetWorkingDirectory(
	IAsyncResult asyncResult
)
Visual Basic
<ObsoleteAttribute("Use FTPConnection.ServerDirectory.")> _
Public Overridable Function EndGetWorkingDirectory ( _
	asyncResult As IAsyncResult _
) As String
Visual C++
[ObsoleteAttribute(L"Use FTPConnection.ServerDirectory.")]
public:
virtual String^ EndGetWorkingDirectory(
	IAsyncResult^ asyncResult
)

Parameters

asyncResult
Type: System..::..IAsyncResult
An IAsyncResult that stores state information for this asynchronous operation.

Return Value

The working directory on the server.

Remarks

Before calling BeginGetWorkingDirectory(AsyncCallback, Object), you need to create a callback method that implements the AsyncCallback delegate. This callback method executes in a separate thread and is called by the system after BeginGetWorkingDirectory(AsyncCallback, Object) returns. The callback method must accept the IAsyncResult returned by the BeginGetWorkingDirectory(AsyncCallback, Object) method as a parameter. This parameter may then be passed to the EndGetWorkingDirectory method to complete the operation.

See Also