Catel.Services.MessageService.TranslateMessageButton C# (CSharp) Метод

TranslateMessageButton() защищенный статический Метод

Translates the message button.
protected static TranslateMessageButton ( MessageButton button ) : MessageBoxButton
button MessageButton The button.
Результат MessageBoxButton
        protected static MessageBoxButton TranslateMessageButton(MessageButton button)
        {
            try
            {
                return Enum<MessageBoxButton>.ConvertFromOtherEnumValue(button);
            }
            catch (Exception)
            {
                throw new NotSupportedInPlatformException("MessageBox class does not support MessageButton '{0}'", button);
            }
        }
#endif