RenderAction Method

HttpServer.dll

Render contents into a template.

Namespace:  HttpServer.Controllers
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
protected virtual string RenderAction(
	string method,
	params Object[] args
)
Visual Basic (Declaration)
Protected Overridable Function RenderAction ( _
	method As String, _
	ParamArray args As Object() _
) As String
Visual C++
protected:
virtual String^ RenderAction(
	String^ method, 
	... array<Object^>^ args
)

Parameters

method
Type: System..::.String
method/template to generate
args
Type: array< System..::.Object >[]()[]
arguments/parameters used in template

Return Value

template generated content

Remarks

calls RenderActionWithErrors.

See Also