ISettingsUnitHistoryManagerReportExceptionAsync - метод
Reports an exception that occurs during operations on settings units, including contextual information and optional metadata.
Пространство имён: Tessa.SettingsUnitsСборка: Tessa (в Tessa.dll) Версия: 4.2.0+ffad8363f63902f18b3b3f4cfa533a14b2fb19a6
Task<Guid?> ReportExceptionAsync(
Exception exception,
string digest,
string description,
Dictionary<string, Object?>? data = null
)
Function ReportExceptionAsync (
exception As Exception,
digest As String,
description As String,
Optional data As Dictionary(Of String, Object) = Nothing
) As Task(Of Guid?)
Task<Nullable<Guid>>^ ReportExceptionAsync(
Exception^ exception,
String^ digest,
String^ description,
Dictionary<String^, Object^>^ data = nullptr
)
abstract ReportExceptionAsync :
exception : Exception *
digest : string *
description : string *
?data : Dictionary<string, Object>
(* Defaults:
let _data = defaultArg data null
*)
-> Task<Nullable<Guid>>
- exception Exception
- The exception that occurred.
- digest String
- Digest string for a specific settings unit or category.
- description String
-
Detailed description of the error or failure, providing additional information to support diagnostics and resolution.
- data DictionaryString, Object (Optional)
-
Optional dictionary of additional contextual data to be associated with the action.
Can contain any key-value pairs relevant for diagnostics or auditing.
TaskNullableGuidThe unique identifier of the reported error, if successfully created; otherwise
.