Example #1
0
 /// <summary>
 /// Parses the xml document
 /// </summary>
 /// <param name="tagfile"></param>
 protected void init(string tagfile)
 {
     try {
         AttributeHandler a = new AttributeHandler(this);
         a.Parse(tagfile);
     }
     catch (Exception e) {
         throw e;
     }
 }
Example #2
0
 /// <summary>
 /// Parses the xml document
 /// </summary>
 /// <param name="tagfile"></param>
 protected void Init(XmlDocument xTagfile)
 {
     try {
         AttributeHandler a = new AttributeHandler(this);
         a.Parse(xTagfile);
     }
     catch (Exception e) {
         throw e;
     }
 }
Example #3
0
 /// <summary>
 /// Parses the xml document
 /// </summary>
 /// <param name="tagfile"></param>
 protected void Init(XmlDocument xTagfile)
 {
     try {
         AttributeHandler a = new AttributeHandler(this);
         a.Parse(xTagfile);
     }
     catch (Exception e) {
         throw e;
     }
 }
Example #4
0
 /// <summary>
 /// Parses the xml document
 /// </summary>
 /// <param name="tagfile"></param>
 protected void Init(string tagfile)
 {
     try {
         AttributeHandler a = new AttributeHandler(this);
         a.Parse(tagfile);
     }
     catch (Exception e) {
         throw e;
     }
 }
Example #5
0
        /// <summary>
        /// Parses the xml document
        /// </summary>
        /// <param name="tagfile"></param>
        protected void Init(string tagfile)
        {
            AttributeHandler a = new AttributeHandler(this);

            a.Parse(tagfile);
        }
Example #6
0
        /// <summary>
        /// Parses the xml document
        /// </summary>
        protected void Init(XmlDocument xTagfile)
        {
            AttributeHandler a = new AttributeHandler(this);

            a.Parse(xTagfile);
        }