public virtual uint EndGetRemoteCRC(
IAsyncResult asyncResult
)Public Overridable Function EndGetRemoteCRC (
asyncResult As IAsyncResult
) As UIntegerpublic:
virtual unsigned int EndGetRemoteCRC(
IAsyncResult^ asyncResult
)abstract EndGetRemoteCRC :
asyncResult : IAsyncResult -> uint32
override EndGetRemoteCRC :
asyncResult : IAsyncResult -> uint32 Before calling BeginGetRemoteCRC(String, Int64, Int32, 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 BeginGetRemoteCRC(String, Int64, Int32, AsyncCallback, Object) returns. The callback method must accept the IAsyncResult returned by the BeginGetRemoteCRC(String, Int64, Int32, AsyncCallback, Object) method as a parameter. This parameter may then be passed to the EndGetRemoteCRC method to complete the operation.