Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IConfigurableModule.cs
1using System.Threading.Tasks;
3
4namespace Waher.IoTGateway
5{
9 public interface IConfigurableModule : IModule
10 {
15 Task<IConfigurablePage[]> GetConfigurablePages();
16 }
17}
Interface for configurable modules.
Task< IConfigurablePage[]> GetConfigurablePages()
Gets an array of configurable pages for the module.
Interface for late-bound modules loaded at runtime.
Definition: IModule.cs:9