AsyncResult.End(IAsyncResult) 方法
定义
异步操作的 End 函数完成时,调用此方法。Call this method when the End function for the asynchronous operation is complete. 它确保异步操作已完成,而且进行常规的验证。It ensures that the asynchronous operation is complete, and does some common validation.
public:
static void End(IAsyncResult ^ result);
public static void End (IAsyncResult result);
static member End : IAsyncResult -> unit
Public Shared Sub End (result As IAsyncResult)
参数
- result
- IAsyncResult
表示该异步操作状态 IAsyncResult。The IAsyncResult representing the status of the asynchronous operation.