Skip to content

Instantly share code, notes, and snippets.

@FraukeN
Last active June 15, 2018 22:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FraukeN/dfd732da0de488913a4f0f2fecb71783 to your computer and use it in GitHub Desktop.
Save FraukeN/dfd732da0de488913a4f0f2fecb71783 to your computer and use it in GitHub Desktop.
OverviewVM error handling
private bool _isFaulted;
public bool IsFaulted
{
get { return _isFaulted; }
set { Set(ref _isFaulted, value); }
}
private string _errorMessage;
public string ErrorMessage
{
get { return _errorMessage; }
set { Set(ref _errorMessage, value); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment