void RenderBlockSequenceInto(BlockSequence blockSequence, XmlElement container, int? parentSections)
 {
     foreach (Block block in blockSequence.Blocks)
     {
         RenderBlockInto(block, container, parentSections);
     }
 }
Example #2
0
 void RenderBlockSequenceInto(BlockSequence blockSequence, XmlElement container)
 {
     foreach (Block block in blockSequence.Blocks)
     {
         RenderBlockInto(block, container);
     }
 }
Example #3
0
 public virtual void VisitBlockSequence(BlockSequence sequence)
 {
 }