///
/// The XMLSystem class is here to help handle XML items in this site.
///
public static class XMLSystem
{
static XMLSystem()
{
// Constructor
}
///
/// A function to get the contents of an XML document.
///
/// A valid name of an XML document in the data folder
/// An XmlDocument containing the contents of the XML file
public static XmlDocument GetXML(string name)
{
return null;
}
}