Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save felipebaltazar/cc5d39fca9f51c5ffb047423ff3e3e28 to your computer and use it in GitHub Desktop.
Save felipebaltazar/cc5d39fca9f51c5ffb047423ff3e3e28 to your computer and use it in GitHub Desktop.
public asbtract BaseViewModel : INotifyPropertyChanged
{
protected async Task RunBusyAction (Task busyTask)
{
if(IsBusy)
return;
IsBusy = true;
try
{
await busyTask.ConfigureAwait(false);
}
finally
{
IsBusy = false;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment