Exemple #1
0
 /** Writes the content to a stream.
 * @param os the stream
 * @throws DocumentException on error
 * @throws IOException on error
 */    
 public void WriteTo(Stream os) {
     Wrt wrt = new Wrt(os, this);
     wrt.WriteTo();
 }
Exemple #2
0
        /** Writes the content to a stream.
         * @param os the stream
         * @throws DocumentException on error
         * @throws IOException on error
         */
        virtual public void WriteTo(Stream os)
        {
            Wrt wrt = new Wrt(os, this);

            wrt.WriteTo();
        }
        /// <summary>
        /// Writes the content to a stream.
        /// @throws DocumentException on error
        /// @throws IOException on error
        /// </summary>
        /// <param name="os">the stream</param>
        public void WriteTo(Stream os)
        {
            var wrt = new Wrt(os, this);

            wrt.WriteTo();
        }