-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.URLParser
Andrew Lambert edited this page Nov 7, 2023
·
7 revisions
libcURL.URLParser
Protected Class URLParser
Inherits libcURL.cURLHandle
Note: This class is only available when using libcurl 7.62.0 or later.
This class provides access to libcurl's URL parser.
Dim u As New libcURL.URLParser("http://www.example.net/")
u.Hostname = "www.example.com"
u.Scheme = "https"
u.Path = "/foo/bar.bin"
u.Arguments = "arg1=1&arg2=2"
u.AppendArgument("arg3", "3")
u.Fragment = "top"
MsgBox(u.StringValue) ' https://www.example.com/foo/bar.bin?arg1=1&arg2=2&arg3=3#top
- AppendArgument
- Constructor
- GetPartContent
- Handle
- LastError
- Operator_Compare
- SetPartContent
- StringValue
- AnyScheme As Boolean
- Arguments As String
- Filename As String
- Fragment As String
- Hostname As String
- Password As String
- Path As String
- Port As Integer
- Scheme As String
- Username As String
-
curl_url
in the libcURL documentation.
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.