-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.Opts.OptionIterator
Andrew Lambert edited this page Nov 26, 2022
·
4 revisions
Protected Class OptionIterator
This class iterates over a list of OptionInfo
objects, either the list of all known options or the list of options that have been set for a given EasyHandle
.
This example collects all the options that have been set for an instance of EasyHandle
into an array of OptionInfo
objects:
Dim c As New cURLClient
Dim iter As New libcURL.Opts.OptionIterator(c.EasyHandle)
Dim opts() As libcURL.Opts.OptionInfo
Do
opts.Append(iter.CurrentOption)
Loop Until Not iter.MoveNext()
- OptionInfo class
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.