-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.MultipartFormElement.NextElement
Andrew Lambert edited this page Jun 15, 2017
·
7 revisions
libcURL.MultipartFormElement.NextElement
Dim NextElement As MultipartFormElementForm elements are stored as a linked list. This property allows you to traverse the list from first to last. The last element will have Nil as its NextElement.
This example copies all the elements in form to an array:
Dim elements() As libcURL.MultipartFormElement
Dim form As libcURL.MultipartForm ' assume a valid form object
Dim e As libcURL.MultipartFormElement = form.GetElement(0) ' get the first element
Do Until e = Nil
elements.Append(e)
e = e.NextElement()
LoopWiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-26 Andrew Lambert, offered under the CC BY-SA 3.0 License.