ISettingsUnitPluginGetActualFragmentsAsync - метод
Resolves the actual fragment identifiers by filtering or transforming the provided fragment identifiers based on current context and availability.
Пространство имён: Tessa.SettingsUnitsСборка: Tessa (в Tessa.dll) Версия: 4.2.1+2efecbe35c10dec386bb05925f2876c4acbb708d
ValueTask<IReadOnlyCollection<Guid>> GetActualFragmentsAsync(
Guid unitID,
IEnumerable<Guid> fragmentIDs,
CancellationToken cancellationToken = default
)
Function GetActualFragmentsAsync (
unitID As Guid,
fragmentIDs As IEnumerable(Of Guid),
Optional cancellationToken As CancellationToken = Nothing
) As ValueTask(Of IReadOnlyCollection(Of Guid))
ValueTask<IReadOnlyCollection<Guid>^> GetActualFragmentsAsync(
Guid unitID,
IEnumerable<Guid>^ fragmentIDs,
CancellationToken cancellationToken = CancellationToken()
)
abstract GetActualFragmentsAsync :
unitID : Guid *
fragmentIDs : IEnumerable<Guid> *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> ValueTask<IReadOnlyCollection<Guid>>
- unitID Guid
- The unique identifier of the settings unit.
- fragmentIDs IEnumerableGuid
- The collection of fragment identifiers within the settings unit to evaluate.
- cancellationToken CancellationToken (Optional)
Propagates notification that operations should be canceled.
ValueTaskIReadOnlyCollectionGuidA collection of actual fragment identifiers that are valid and available.
Use this method to validate fragment identifiers, apply context-specific filtering,
or resolve dynamic fragments that may change based on runtime conditions.