Property WhileActiveActions
WhileActiveActions
Gets actions executed continuously while the aura remains active.
Declaration
IComplexAuraAction WhileActiveActions { get; }
Property Value
Type | Description |
---|---|
IComplexAuraAction |
Remarks
These actions run repeatedly as long as IsActive remains true.
Examples
// Execute all enabled actions
foreach(var action in context.WhileActiveActions.Items.Where(a => a.IsEnabled))
{
await action.Execute();
}