C# Class Simplify.Web.Responses.Tpl

Provides template response (puts data to DataCollector)
Inheritance: ControllerResponse
Exibir arquivo Open project: i4004/Simplify.Web

Public Methods

Method Description
Process ( ) : ControllerResponseResult

Processes this response

Tpl ( ITemplate template ) : Simplify.Templates

Initializes a new instance of the Tpl class.

Tpl ( ITemplate template, string title ) : Simplify.Templates

Initializes a new instance of the Tpl class.

Tpl ( string data ) : Simplify.Templates

Initializes a new instance of the Tpl class.

Tpl ( string data, string title ) : Simplify.Templates

Initializes a new instance of the Tpl class.

Method Details

Process() public method

Processes this response
public Process ( ) : ControllerResponseResult
return ControllerResponseResult

Tpl() public method

Initializes a new instance of the Tpl class.
public Tpl ( ITemplate template ) : Simplify.Templates
template ITemplate The template.
return Simplify.Templates

Tpl() public method

Initializes a new instance of the Tpl class.
public Tpl ( ITemplate template, string title ) : Simplify.Templates
template ITemplate The template.
title string The site title.
return Simplify.Templates

Tpl() public method

Initializes a new instance of the Tpl class.
public Tpl ( string data ) : Simplify.Templates
data string The data for main content variable.
return Simplify.Templates

Tpl() public method

Initializes a new instance of the Tpl class.
public Tpl ( string data, string title ) : Simplify.Templates
data string The data for main content variable.
title string The site title.
return Simplify.Templates