[propget] HRESULT _NewEnum([out, retval] IUnknown ** pVal);
Returns a standard COM enumerator, this allows you to do "for each attachment in mgr.response" in VB[Script]
a new COM enumerator object instance
dim mgr,a
set mgr = CreateObject("PocketSOAP.Attachments")
...
e.parse mgr
for each a in mgr.Response
wscript.echo a.TypeName
wscript.echo a.Uri
next
Copyright © Simon Fell, 2000-2004. All rights reserved.