Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AnimationEvent.cs
1using System;
2
4{
9 {
13 Started,
14
18 Completed,
19
23 Cancelled,
24
28 Skipped,
29
33 Failed
34 }
35
39 public sealed record AnimationEvent(
40 AnimationKey Key,
42 TimeSpan? Elapsed,
43 bool WasCancelled,
44 Exception? Exception);
45}
sealed record AnimationEvent(AnimationKey Key, AnimationLifecycleStage Stage, TimeSpan? Elapsed, bool WasCancelled, Exception? Exception)
Data raised when an animation lifecycle event occurs.
AnimationLifecycleStage
Enumeration describing animation lifecycle stages.
Represents a strongly typed key used for identifying animations.
Definition: AnimationKey.cs:7