Asynchronusly retrieve a checksum of the specified file. This feature
is non-standard.
Namespace: System.Net.FtpClient.Extensions
Assembly: System.Net.FtpClient (in System.Net.FtpClient.dll) Version: 1.0.5064.17461
Syntax
C# |
---|
public static IAsyncResult BeginGetChecksum(
this FtpClient client,
string path,
AsyncCallback callback,
Object state
) |
Visual Basic |
---|
<ExtensionAttribute>
Public Shared Function BeginGetChecksum (
client As FtpClient,
path As String,
callback As AsyncCallback,
state As Object
) As IAsyncResult |
Visual C++ |
---|
public:
[ExtensionAttribute]
static IAsyncResult^ BeginGetChecksum(
FtpClient^ client,
String^ path,
AsyncCallback^ callback,
Object^ state
) |
Return Value
Type:
IAsyncResultIAsyncResult
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
FtpClient. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also