ISettingsUnitRepositoryGetRecordDataAsync - метод
Retrieves the data content of a settings unit record by its unique identifier.
Пространство имён: Tessa.SettingsUnitsСборка: Tessa (в Tessa.dll) Версия: 4.2.2+a8f0dd3c063817b2e3f05a923303d808e447c338
Task<Dictionary<string, Object?>?> GetRecordDataAsync(
Guid id,
bool checkPermissions = false,
CancellationToken cancellationToken = default
)
Function GetRecordDataAsync (
id As Guid,
Optional checkPermissions As Boolean = false,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of Dictionary(Of String, Object))
Task<Dictionary<String^, Object^>^>^ GetRecordDataAsync(
Guid id,
bool checkPermissions = false,
CancellationToken cancellationToken = CancellationToken()
)
abstract GetRecordDataAsync :
id : Guid *
?checkPermissions : bool *
?cancellationToken : CancellationToken
(* Defaults:
let _checkPermissions = defaultArg checkPermissions false
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<Dictionary<string, Object>>
override GetRecordDataAsync :
id : Guid *
?checkPermissions : bool *
?cancellationToken : CancellationToken
(* Defaults:
let _checkPermissions = defaultArg checkPermissions false
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<Dictionary<string, Object>>
- id Guid
- The unique identifier of the settings unit record.
- checkPermissions Boolean (Optional)
- Performs a permissions check for the current session only if it is not an admin session
- cancellationToken CancellationToken (Optional)
Propagates notification that operations should be canceled.
TaskDictionaryString,
ObjectThe settings unit data model that stores configuration values of the specified record if exists; otherwise,
.