TraverseNode Method

HttpServer.dll

Recursive function that will go through an xml element and store it's content to the form item.

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

Syntax

C#
public void TraverseNode(
	HttpInputBase item,
	XmlNode node
)
Visual Basic (Declaration)
Public Sub TraverseNode ( _
	item As HttpInputBase, _
	node As XmlNode _
)
Visual C++
public:
void TraverseNode(
	HttpInputBase^ item, 
	XmlNode^ node
)

Parameters

item
Type: HttpServer..::.HttpInputBase
(parent) Item in form that content should be added to.
node
Type: System.Xml..::.XmlNode
Node that should be parsed.

See Also