Esempio n. 1
0
		protected override void doLoadElementChild(XmlNode child)
		{
			if (child.NodeType == XmlNodeType.Element)
			{
				String nodeName = child.LocalName;
				if (nodeName.Equals("At"))
				{
					At at = new At(child);
					this.ats.Add(at);
				}
				else if (nodeName.Equals("ShortDescription"))
				{
					this.shortDescription = child.InnerText;
				}
			}
		}