ChecksumExtension.EndGetChecksum Method

System.Net.FtpClient

Collapse image Expand Image Copy image CopyHover image
Ends an asynchronous call to BeginGetChecksum()

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

Syntax

C#
public static FtpHash EndGetChecksum(
	IAsyncResult ar
)
Visual Basic
Public Shared Function EndGetChecksum ( 
	ar As IAsyncResult
) As FtpHash
Visual C++
public:
static FtpHash^ EndGetChecksum(
	IAsyncResult^ ar
)

Parameters

ar
Type: System..::..IAsyncResult
IAsyncResult returned from BeginGetChecksum()

Return Value

Type: FtpHash
FtpHash object containing the value and algorithm. Use the IsValid property to determine if this command was successfull. FtpCommandException's can be thrown from the underlying calls.

See Also