~dangarner/xibo/107-client

« back to all changes in this revision

Viewing changes to client/dotNET/BlackList.cs

  • Committer: Daniel Garner
  • Date: 2009-12-31 11:16:07 UTC
  • mfrom: (81.1.12 105-client-test)
  • Revision ID: dan@xibo.org.uk-20091231111607-b547kt1lm9jtlczk
MergedĀ lp:~dangarner/xibo/105-client-test

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
using System.Text;
24
24
using System.Xml;
25
25
using System.Windows.Forms;
 
26
using System.Diagnostics;
26
27
 
27
28
namespace XiboClient
28
29
{
89
90
        /// <param name="items">The XMLNodeList containing the blacklist items. Each node must have an "id".</param>
90
91
        public void Add(XmlNodeList items)
91
92
        {
 
93
            Trace.WriteLine(new LogMessage("Blacklist - Add", "Adding XMLNodeList to Blacklist"), LogType.Info.ToString());
 
94
 
92
95
            foreach (XmlNode node in items)
93
96
            {
94
97
                XmlAttributeCollection attributes = node.Attributes;