コード例 #1
0
        private void SetErrorView()
        {
            Debug.WriteLine($"BookingViewModel - SetErrorView()");

            if (ErrorKind == ServiceErrorKind.None)
            {
                return;
            }

            var eventPage = ErrorKind.ToBookingWebviewErrorPage();

            _eventTracker.Display(eventPage);

            ErrorTitle       = ErrorKind.ToTitle();
            ErrorDescription = ErrorKind.ToMessage();

            ShowErrorView = true;
        }