示例#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;
     }
 }
示例#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;
     }
 }
示例#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;
     }
 }
示例#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;
     }
 }
示例#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);
        }
示例#6
0
        /// <summary>
        /// Parses the xml document
        /// </summary>
        protected void Init(XmlDocument xTagfile)
        {
            AttributeHandler a = new AttributeHandler(this);

            a.Parse(xTagfile);
        }