public KonfigurationOneNote(XmlNode onenoteConfNode)
        {
            this._notebook     = "";
            this._ignoreTags   = "";
            this._renderImages = true;
            this._lang         = "DE";
            this._onenoteTags  = new KonfigurationOneNoteTags();

            foreach (XmlNode subNode in onenoteConfNode.ChildNodes)
            {
                switch (subNode.Name)
                {
                case "notebook":
                    _notebook = subNode.InnerText;
                    break;

                case "ignoreTags":
                    _ignoreTags = subNode.InnerText;
                    break;

                case "renderImages":
                    _renderImages = bool.Parse(subNode.InnerText);
                    break;

                case "lang":
                    _lang = subNode.InnerText;
                    break;

                case "onenotetagsConf":
                    _onenoteTags = new KonfigurationOneNoteTags(subNode);
                    break;
                }
            }
        }
 public KonfigurationOneNote()
 {
     this._notebook     = "";
     this._ignoreTags   = "";
     this._renderImages = true;
     this._lang         = "DE";
     this._onenoteTags  = new KonfigurationOneNoteTags();
 }
 public KonfigurationOneNote(string notebook, string ignoreTags, bool renderImages, string lang, KonfigurationOneNoteTags onenoteTags)
 {
     this._notebook     = notebook;
     this._ignoreTags   = ignoreTags;
     this._renderImages = renderImages;
     this._lang         = lang;
     this._onenoteTags  = onenoteTags;
 }