Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ReportTableCompleted.cs
1using System;
2using System.Xml;
4
6{
11 {
12 private readonly string tableId;
13
19 {
20 this.tableId = TableId;
21 }
22
27 public ReportTableCompleted(XmlElement Xml)
28 {
29 this.tableId = XML.Attribute(Xml, "tableId");
30 }
31
35 public string TableId => this.tableId;
36
41 public override void ExportXml(XmlWriter Output)
42 {
43 Output.WriteStartElement("TableEnd");
44 Output.WriteAttributeString("tableId", this.tableId);
45 Output.WriteEndElement();
46 }
47 }
48}
Abstract base class for report elements.
ReportTableCompleted(XmlElement Xml)
Completion of a table.
override void ExportXml(XmlWriter Output)
Exports element to XML
ReportTableCompleted(string TableId)
Completion of a table.
Helps with common XML-related tasks.
Definition: XML.cs:19
static string Attribute(XmlElement E, string Name)
Gets the value of an XML attribute.
Definition: XML.cs:914