-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.MIMEMessagePart.NextPart
Andrew Lambert edited this page Nov 26, 2022
·
3 revisions
libcURL.MIMEMessagePart.NextPart
Dim NextPart As MIMEMessagePart
Message parts are stored as a linked list. This property allows you to traverse the list from first to last. The last part will have Nil
as its NextPart
.
This example copies all the parts in a message to an array:
Dim parts() As libcURL.MIMEMessagePart
Dim form As libcURL.MIMEMessage ' assume a valid form object
Dim e As libcURL.MIMEMessagePart = form.GetElement(0) ' get the first element
Do Until e = Nil
parts.Append(e)
e = e.NextPart
Loop
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.