ISOAPNodes::Item Property (read-only)

[propget] HRESULT Item([in] long idx, [out, retval] ISOAPNode ** node);

Accesses a child Node from the collection, given its ordinal position.

 

Return Values

The requested Node object, or if the request ordinal is outside the valid range, the E_INVALIDARG error is returned.

 

Sample Code

dim e, t
set e = CreateObject("pocketSOAP.Envelope.2")
set t = CreateObject("pocketSOAP.HTTPTransport.2")
...
e.parse t

for i = 0 to e.Parameters.Count
	wscript.echo e.Parameters.Item(i).Name & " : " & e.Parameters.Item(i).Value
next

 

See Also

The ISOAPNodes Interface | 

 

 

Copyright

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