Skip to content

Instantly share code, notes, and snippets.

@simpleprogrammer-shared
Created July 11, 2016 09:34
Show Gist options
  • Save simpleprogrammer-shared/aa74f6e7ed90854752b30e77e9396d08 to your computer and use it in GitHub Desktop.
Save simpleprogrammer-shared/aa74f6e7ed90854752b30e77e9396d08 to your computer and use it in GitHub Desktop.
Wrapping Callbacks 1
public void DoCall()
{
ShowProgressDialog();
RemoteService.DoAsync(CallBackMethod);
}
public void CallBackMethod(Result result)
{
HideProgressDialog();
// Process result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment