12 public class ServiceProvidersNavigationArgs(IServiceProvider[] ServiceProviders, string Title, string Description) :
NavigationArgs
14 private readonly IServiceProvider[] serviceProviders = ServiceProviders;
15 private readonly
string title = Title;
16 private readonly
string description = Description;
21 public ServiceProvidersNavigationArgs()
22 : this([], string.Empty, string.Empty)
29 public IServiceProvider[] ServiceProviders => this.serviceProviders;
34 public string Title => this.title;
39 public string Description => this.description;
44 public TaskCompletionSource<IServiceProvider?>? ServiceProvider {
get;
internal set; } =
new();
An base class holding page specific navigation parameters.
Interface for information about a service provider.