Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
XmppIoTExtension.cs
1using System;
3
5{
9 public abstract class IoTXmppExtension : XmppExtension
10 {
17 : base(Parent, Model)
18 {
19 }
20
24 public override string SchemaResource => XmppIoTNode.XmppIoTSchemaResource;
25
29 public override string Namespace => XmppIoTNode.XmppIoTNamespace;
30
31 }
32}
Root node of a simulation model
Definition: Model.cs:49
Abstract base class for XMPP extensions.
Abstract base class for IoT XMPP extensions.
IoTXmppExtension(ISimulationNode Parent, Model Model)
Abstract base class for IoT XMPP extensions.
override string Namespace
XML Namespace where the element is defined.
override string SchemaResource
Points to the embedded XML Schema resource defining the semantics of the XML namespace.
Abstract base class for IoT XMPP simulation nodes.
Definition: XmppIoTNode.cs:10
Basic interface for simulator nodes. Implementing this interface allows classes with default contruct...
ISimulationNode Parent
Parent node in the simulation model.