Skip to content

libcURL.URLParser.StringValue

Andrew Lambert edited this page Sep 14, 2023 · 6 revisions

libcURL.URLParser.StringValue

Method Signatures

 Function StringValue(Optional Flags As Integer) As String
 Sub StringValue(Optional Flags As Integer, Assigns FromString As String)

Parameters

StringValue(Integer, Assigns String)

Name Type Comment
Flags Integer Optional. If specified, a bitmask of one or more parsing flags.
FromString String The URL string to parse.

StringValue(Integer) As String

Name Type Comment
Flags Integer Optional. If specified, a bitmask of one or more parsing flags.

Return value

StringValue(Integer) As String

The URL string.

Remarks

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:

Clone this wiki locally