C# Class RazorTex.GenericTemplate

Provides a base implementation of a template.
Inheritance: ITemplate
Exibir arquivo Open project: cmenge/RazorTex

Public Methods

Method Description
Clear ( ) : void

Clears the template.

Execute ( ) : void

Executes the template.

Write ( object @object ) : void

Writes the specified object to the template.

WriteLiteral ( object literal ) : void

Writes a literal to the template.

Method Details

Clear() public method

Clears the template.
public Clear ( ) : void
return void

Execute() public method

Executes the template.
public Execute ( ) : void
return void

Write() public method

Writes the specified object to the template.
public Write ( object @object ) : void
@object object
return void

WriteLiteral() public method

Writes a literal to the template.
public WriteLiteral ( object literal ) : void
literal object
return void