Can someone give me an example of how to use the method begin to display an alert to the User saying Loading ... With the code below I place the query using the Completed event, use the method as Begin?
service.EventosDoDiaCompleted += RecebeEventos;
service.EventosDoDiaAsync();
private void RecebeEventos(object sender, AsyncCompletedEventArgs e)
{
Dataset ds = service.EventosDoDia();
}