AddMe Method

HttpServer.dll

Creates a DIV node and add's the specified node to it.

Namespace:  HttpServer.Rendering.Haml.Nodes
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public Node AddMe(
	NodeList prototypes,
	Node parent,
	LineInfo line,
	Node me
)
Visual Basic (Declaration)
Public Function AddMe ( _
	prototypes As NodeList, _
	parent As Node, _
	line As LineInfo, _
	me As Node _
) As Node
Visual C++
public:
Node^ AddMe(
	NodeList^ prototypes, 
	Node^ parent, 
	LineInfo^ line, 
	Node^ me
)

Parameters

prototypes
Type: HttpServer.Rendering.Haml..::.NodeList
Contains all prototypes for each control char. used to instanciate new nodes.
parent
Type: HttpServer.Rendering.Haml.Nodes..::.Node
parent node
line
Type: HttpServer.Rendering.Haml..::.LineInfo
current line information
me
Type: HttpServer.Rendering.Haml.Nodes..::.Node
node to add to the DIV node

Return Value

current node

See Also