ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/xmltv_parser/trunk/libxmltv/Core/XMLTV_LOADER.cs
(Generate patch)

Comparing trunk/libxmltv/Core/XMLTV_LOADER.cs (file contents):
Revision 16 by william, Thu Mar 7 09:26:43 2013 UTC vs.
Revision 19 by william, Thu Mar 7 10:00:40 2013 UTC

--- trunk/libxmltv/Core/XMLTV_LOADER.cs	2013/03/07 09:26:43	16
+++ trunk/libxmltv/Core/XMLTV_LOADER.cs	2013/03/07 10:00:40	19
@@ -5,6 +5,7 @@ using System.Text;
 using libxmltv.Interfaces;
 using System.IO;
 using Enterprise.Logging;
+using System.Xml.Linq;
 
 namespace libxmltv.Core
 {
@@ -56,7 +57,8 @@ namespace libxmltv.Core
         private void LoadXml()
         {
             XMLTV_LOGGER.Log.Info.WriteLine("Loading XMLTV File: {0}", XmlFile.Name);
-            XMLTV_LOGGER.Log.Warn.WriteLine("XML File Loading has not been implemented yet!");
+            //XMLTV_LOGGER.Log.Warn.WriteLine("XML File Loading has not been implemented yet!");
+            XDocument doc = XDocument.Load(XmlFile.FullName);
         }
     }
 }