Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ReadoutRule.cs
1using System.Xml;
3
5{
9 [CollectionName("ReadoutRules")]
10 public class ReadoutRule : NodeRule
11 {
15 public ReadoutRule()
16 : base()
17 {
18 }
19
24 public override void Export(XmlWriter Output)
25 {
26 Output.WriteStartElement("ReadoutRule", Rule.RuleNamespace);
27 this.ExportContent(Output);
28 Output.WriteEndElement();
29 }
30 }
31}
Abstract base class for node rules.
Definition: NodeRule.cs:17
Controls if a device with a remote JID is allowed to read data from a device with JID.
Definition: ReadoutRule.cs:11
override void Export(XmlWriter Output)
Exports the rule.
Definition: ReadoutRule.cs:24
ReadoutRule()
Controls if a device with a remote JID is allowed to subscribe to the presence of a device with JID.
Definition: ReadoutRule.cs:15
Abstract base class for rules.
Definition: Rule.cs:12
const string RuleNamespace
http://waher.se/Schema/Provisioning/Rules.xsd
Definition: Rule.cs:16