FtpClient.BeginSetHashAlgorithm Method

System.Net.FtpClient

Collapse image Expand Image Copy image CopyHover image
Asynchronously sets the hash algorithm type to be used with the HASH command.

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

Syntax

C#
public IAsyncResult BeginSetHashAlgorithm(
	FtpHashAlgorithm type,
	AsyncCallback callback,
	Object state
)
Visual Basic
Public Function BeginSetHashAlgorithm ( 
	type As FtpHashAlgorithm,
	callback As AsyncCallback,
	state As Object
) As IAsyncResult
Visual C++
public:
virtual IAsyncResult^ BeginSetHashAlgorithm(
	FtpHashAlgorithm type, 
	AsyncCallback^ callback, 
	Object^ state
) sealed

Parameters

type
Type: System.Net.FtpClient..::..FtpHashAlgorithm
Hash algorithm to use
callback
Type: System..::..AsyncCallback
Async Callback
state
Type: System..::..Object
State object

Return Value

Type: IAsyncResult
IAsyncResult

Implements

IFtpClient..::..BeginSetHashAlgorithm(FtpHashAlgorithm, AsyncCallback, Object)

See Also