Пример #1
0
        /// <summary>
        /// 读取取签
        /// </summary>
        /// <returns></returns>
        protected override ITag[] ReadTags()
        {
            ITag[] tags = base.ReadTags();
            for (int i = 0; i < tags.Length; i++)
            {
                if (tags[i] is BodyTag)
                {
                    BodyTag tag = (BodyTag)tags[i];
                    for (int j = 0; j < this.Children.Count; j++)
                    {
                        tag.AddChild(this.Children[j]);
                    }
                    this.Children.Clear();
                    tags[i] = tag;
                }
            }

            return(tags);
        }
Пример #2
0
        private ITag[] ProcessBody(ITag[] tags)
        {
            if (tags == null || tags.Length == 0)
            {
                return(tags);
            }
            for (int i = 0; i < tags.Length; i++)
            {
                if (tags[i] is BodyTag)
                {
                    BodyTag tag = (BodyTag)tags[i];
                    for (int j = 0; j < this.Children.Count; j++)
                    {
                        tag.AddChild(this.Children[j]);
                    }
                    this.Children.Clear();
                    tags[i] = tag;
                }
            }

            return(tags);
        }