Example #1
0
            public bool ForeachChannel(Channel channel)
            {
                /* These are handled by the "system_packages" section */
                if (channel.IsSystem)
                {
                    return(true);
                }

                channel.ToXml(this.writer);
                return(true);
            }
Example #2
0
        public bool ForeachChannel (Channel channel)
        {
            /* These are handled by the "system_packages" section */
            if (channel.IsSystem)
                return true;

            channel.ToXml (this.writer);
            return true;
        }
Example #3
0
 public static void ToXml(Channel[] channels, string filename)
 {
     System.IO.Stream s = System.IO.File.Open(filename, System.IO.FileMode.OpenOrCreate);
     Channel.ToXml(channels, s);
     s.Close();
 }