BleMicroPythonSample.ViewModelBase.ShowErrorDialog C# (CSharp) Method

ShowErrorDialog() protected method

Shows an error dialog with the given title and message.
protected ShowErrorDialog ( string title, string message ) : void
title string Error title.
message string Error message.
return void
		protected void ShowErrorDialog(string title, string message)
		{
			Device.BeginInvokeOnMainThread(() =>
			{
				UserDialogs.Instance.Alert(message, title);
			});
		}
	}