Beispiel #1
0
 protected void ReadFrom(Stream is1)
 {
     try
     {
         //XmlOptions options = new XmlOptions(DEFAULT_XML_OPTIONS);
         //Removing root element
         //options.LoadReplaceDocumentElement = (/*setter*/null);
         XmlDocument xmldoc = ConvertStreamToXml(is1);
         ctPivotCacheRecords = CT_PivotCacheRecords.Parse(xmldoc.DocumentElement, NamespaceManager);
     }
     catch (XmlException e)
     {
         throw new IOException(e.Message);
     }
 }
Beispiel #2
0
 public XSSFPivotCacheRecords()
     : base()
 {
     ctPivotCacheRecords = new CT_PivotCacheRecords();
 }