-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.URLParser.StringValue
Andrew Lambert edited this page Sep 14, 2023
·
6 revisions
Function StringValue(Optional Flags As Integer) As String
Sub StringValue(Optional Flags As Integer, Assigns FromString As String)
Name | Type | Comment |
---|---|---|
Flags | Integer |
Optional. If specified, a bitmask of one or more parsing flags. |
FromString | String |
The URL string to parse. |
Name | Type | Comment |
---|---|---|
Flags | Integer |
Optional. If specified, a bitmask of one or more parsing flags. |
The URL string.
Gets and sets the entire URL as a string. If the URL doesn't specify a scheme (http:
, ftp:
, etc.) then http:
will be assumed if AnyScheme is True
; otherwise an exception will be raised.
The Flags
parameter can be a bitmask of one or more parser flags. Refer to the libcurl documentation for information about what flags are available and what they do:
- curl_url_get#FLAGS for retrieving a value
- curl_url_set#FLAGS for assigning a value
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.