Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
XmppIoTNode.cs
1using System;
3
5{
9 public abstract class XmppIoTNode : SimulationNodeChildren
10 {
11 internal const string XmppIoTSchemaResource = "TAG.Simulator.XMPP.IoT.Schema.ComSimXmppIoT.xsd";
12 internal const string XmppIoTNamespace = "http://lab.tagroot.io/Schema/ComSim/XMPPIoT.xsd";
13
20 : base(Parent, Model)
21 {
22 }
23
27 public override string SchemaResource => XmppIoTSchemaResource;
28
32 public override string Namespace => XmppIoTNamespace;
33 }
34}
Root node of a simulation model
Definition: Model.cs:49
Abstract base class for simulation nodes with children
ISimulationNode Parent
Parent node in the simulation model.
Abstract base class for IoT XMPP simulation nodes.
Definition: XmppIoTNode.cs:10
override string Namespace
XML Namespace where the element is defined.
Definition: XmppIoTNode.cs:32
override string SchemaResource
Points to the embedded XML Schema resource defining the semantics of the XML namespace.
Definition: XmppIoTNode.cs:27
XmppIoTNode(ISimulationNode Parent, Model Model)
Abstract base class for IoT XMPP simulation nodes.
Definition: XmppIoTNode.cs:19
Basic interface for simulator nodes. Implementing this interface allows classes with default contruct...