Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NoOpViewTransition.cs
1using System.Threading;
2using System.Threading.Tasks;
3
5{
6 public sealed class NoOpViewTransition : IViewTransition
7 {
8 public Task RunAsync(ViewSwitcherTransitionRequest request, CancellationToken cancellationToken)
9 {
10 return Task.CompletedTask;
11 }
12 }
13}
Immutable context supplied to IViewTransition implementations.
Defines a strategy used by ViewSwitcher to animate between two views.