C# Class DotLiquid.Document

Inheritance: DotLiquid.Block
Exibir arquivo Open project: NewSpring/Rock

Public Methods

Method Description
Initialize ( string tagName, string markup, List tokens ) : void

We don't need markup to open this block

Render ( Context context, TextWriter result ) : void

This is used to handle the new known/valid control exceptions in Liquid.

Protected Methods

Method Description
AssertMissingDelimitation ( ) : void

Document blocks don't need to be terminated since they are not actually opened

Method Details

AssertMissingDelimitation() protected method

Document blocks don't need to be terminated since they are not actually opened
protected AssertMissingDelimitation ( ) : void
return void

Initialize() public method

We don't need markup to open this block
public Initialize ( string tagName, string markup, List tokens ) : void
tagName string
markup string
tokens List
return void

Render() public method

This is used to handle the new known/valid control exceptions in Liquid.
public Render ( Context context, TextWriter result ) : void
context Context
result System.IO.TextWriter
return void