FtpClient.BeginGetHash Method

System.Net.FtpClient

Collapse image Expand Image Copy image CopyHover image
Asynchronously retrieves the hash for the specified file

Namespace: System.Net.FtpClient
Assembly: System.Net.FtpClient (in System.Net.FtpClient.dll) Version: 1.0.5064.17461

Syntax

C#
public IAsyncResult BeginGetHash(
	string path,
	AsyncCallback callback,
	Object state
)
Visual Basic
Public Function BeginGetHash ( 
	path As String,
	callback As AsyncCallback,
	state As Object
) As IAsyncResult
Visual C++
public:
virtual IAsyncResult^ BeginGetHash(
	String^ path, 
	AsyncCallback^ callback, 
	Object^ state
) sealed

Parameters

path
Type: System..::..String
The file you want the server to compute the hash for
callback
Type: System..::..AsyncCallback
AsyncCallback
state
Type: System..::..Object
State object

Return Value

Type: IAsyncResult
IAsyncResult

Implements

IFtpClient..::..BeginGetHash(String, AsyncCallback, Object)

See Also