Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ReportSectionCreated.cs
1using System;
2using System.Xml;
3
5{
10 {
11 private readonly string header;
12
18 {
19 this.header = Header;
20 }
21
26 public ReportSectionCreated(XmlElement Xml)
27 {
28 this.header = Xml.InnerText;
29 }
30
34 public string Header=> this.header;
35
40 public override void ExportXml(XmlWriter Output)
41 {
42 Output.WriteElementString("SectionStart", this.header);
43 }
44 }
45}
Abstract base class for report elements.
override void ExportXml(XmlWriter Output)
Exports element to XML
ReportSectionCreated(string Header)
Creation of a section.
ReportSectionCreated(XmlElement Xml)
Creation of a section.