NotificationHelperShowException - метод |
Отображает уведомление с ошибкой
Пространство имён:
Tessa.UI.AppManager.CatalogService
Сборка:
Tessa.UI (в Tessa.UI.dll) Версия: 3.5.0.19
Синтаксис public static void ShowException(
[NotNullAttribute] this INotificationUIManager notificationManager,
[NotNullAttribute] Exception exception,
[CanBeNullAttribute] string toolTip = null,
TimeSpan? duration = null,
[CanBeNullAttribute] ICommand clickCommand = null,
[CanBeNullAttribute] string serverName = null,
[CanBeNullAttribute] params UIButton[] buttons
)
<ExtensionAttribute>
Public Shared Sub ShowException (
<NotNullAttribute> notificationManager As INotificationUIManager,
<NotNullAttribute> exception As Exception,
<CanBeNullAttribute> Optional toolTip As String = Nothing,
Optional duration As TimeSpan? = Nothing,
<CanBeNullAttribute> Optional clickCommand As ICommand = Nothing,
<CanBeNullAttribute> Optional serverName As String = Nothing,
<CanBeNullAttribute> ParamArray buttons As UIButton()
)
public:
[ExtensionAttribute]
static void ShowException(
[NotNullAttribute] INotificationUIManager^ notificationManager,
[NotNullAttribute] Exception^ exception,
[CanBeNullAttribute] String^ toolTip = nullptr,
Nullable<TimeSpan> duration = nullptr,
[CanBeNullAttribute] ICommand^ clickCommand = nullptr,
[CanBeNullAttribute] String^ serverName = nullptr,
[CanBeNullAttribute] ... array<UIButton^>^ buttons
)
[<ExtensionAttribute>]
static member ShowException :
[<NotNullAttribute>] notificationManager : INotificationUIManager *
[<NotNullAttribute>] exception : Exception *
[<CanBeNullAttribute>] ?toolTip : string *
?duration : Nullable<TimeSpan> *
[<CanBeNullAttribute>] ?clickCommand : ICommand *
[<CanBeNullAttribute>] ?serverName : string *
[<CanBeNullAttribute>] buttons : UIButton[]
(* Defaults:
let _toolTip = defaultArg toolTip null
let _duration = defaultArg duration null
let _clickCommand = defaultArg clickCommand null
let _serverName = defaultArg serverName null
*)
-> unit
Параметры
- notificationManager
- Тип: Tessa.UI.NotificationsINotificationUIManager
Диспетчер уведомлений
- exception
- Тип: SystemException
Исключение
- toolTip (Optional)
- Тип: SystemString
Подсказка
- duration (Optional)
- Тип: SystemNullableTimeSpan
Длительность отображения
- clickCommand (Optional)
- Тип: System.Windows.InputICommand
Команда выполняемая при нажатии на уведомление
- serverName (Optional)
- Тип: SystemString
Имя сервера
- buttons
- Тип: Tessa.UIUIButton
Список кнопок
Примечание об использовании
В Visual Basic и C# этот метод можно вызывать как метод экземпляра для любого объекта типа
INotificationUIManager. При вызове метода для экземпляра следует опускать первый параметр. Дополнительные сведения см. в разделе
Методы расширения (Visual Basic) или
Методы расширения (Руководство по программированию в C#).
См. также