ISOAPNodes::Append Method

HRESULT Append([in] ISOAPNode * newNode);

This allows to append an already constructed Node object into the collection.

 

Parameters

newNode
ISOAPNode *, [in]: The node to add

 

Return Values

 

Sample Code

dim e, n
set e = CreateObject("pocketSOAP.Envelope.2")
e.SetMethod "Add", "http://calc.org/"
set n = CreateObject("pocketSOAP.Node.1")
n.name = "a"
n.value = 10
e.Parameters.Append n

 

See Also

The ISOAPNodes Interface | 

 

 

Copyright

Copyright © Simon Fell, 2000-2004. All rights reserved.