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