TypedAsyncResult<T>.End(IAsyncResult) Método
Definição
O final deve ser chamado quando a função Final da operação assíncrona for concluída.End should be called when the End function for the asynchronous operation is complete. Garante que a operação assíncrona seja concluída e faz alguma validação comum.It ensures the asynchronous operation is complete, and does some common validation.
public:
static T End(IAsyncResult ^ result);
public static T End (IAsyncResult result);
static member End : IAsyncResult -> 'T
Public Shared Function End (result As IAsyncResult) As T
Parâmetros
- result
- IAsyncResult
O IAsyncResult que representa o status de uma operação assíncrona.The IAsyncResult representing the status of an asynchronous operation.
Retornos
- T
O resultado tipado da operação assíncrona.The typed result of the asynchronous operation.