Esempio n. 1
0
        protected void WriteTo(Stream out1)
        {
            SingleXmlCellsDocument doc = new SingleXmlCellsDocument();

            doc.SetSingleXmlCells(SingleXMLCells);
            doc.Save(out1);
        }
Esempio n. 2
0
        protected void WriteTo(Stream out1)
        {
            SingleXmlCellsDocument xmlCellsDocument = new SingleXmlCellsDocument();

            xmlCellsDocument.SetSingleXmlCells(this.SingleXMLCells);
            xmlCellsDocument.Save(out1);
        }
Esempio n. 3
0
 public void ReadFrom(Stream is1)
 {
     try
     {
         this.SingleXMLCells = SingleXmlCellsDocument.Parse(is1).GetSingleXmlCells();
     }
     catch (XmlException ex)
     {
         throw new IOException(ex.Message);
     }
 }
Esempio n. 4
0
 public void ReadFrom(Stream is1)
 {
     try
     {
         SingleXmlCellsDocument doc = SingleXmlCellsDocument.Parse(is1);
         SingleXMLCells = doc.GetSingleXmlCells();
     }
     catch (XmlException e)
     {
         throw new IOException(e.Message);
     }
 }