Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceProvidersNavigationArgs.cs
2using IServiceProvider = Waher.Networking.XMPP.Contracts.IServiceProvider;
3
5{
12 public class ServiceProvidersNavigationArgs(IServiceProvider[] ServiceProviders, string Title, string Description) : NavigationArgs
13 {
14 private readonly IServiceProvider[] serviceProviders = ServiceProviders;
15 private readonly string title = Title;
16 private readonly string description = Description;
17
21 public ServiceProvidersNavigationArgs()
22 : this([], string.Empty, string.Empty)
23 {
24 }
25
29 public IServiceProvider[] ServiceProviders => this.serviceProviders;
30
34 public string Title => this.title;
35
39 public string Description => this.description;
40
44 public TaskCompletionSource<IServiceProvider?>? ServiceProvider { get; internal set; } = new();
45 }
46}
An base class holding page specific navigation parameters.
Interface for information about a service provider.
Definition: App.xaml.cs:4