CreateNode Method

HttpServer.dll

Creates the node.

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

Syntax

C#
public Node CreateNode(
	string word,
	Node parent
)
Visual Basic (Declaration)
Public Function CreateNode ( _
	word As String, _
	parent As Node _
) As Node
Visual C++
public:
Node^ CreateNode(
	String^ word, 
	Node^ parent
)

Parameters

word
Type: System..::.String
node identifier.
parent
Type: HttpServer.Rendering.Haml.Nodes..::.Node
parent node.

Return Value

created node if identifier was found; otherwise null.

See Also