Skip to content

libcURL.IsFeatureAvailable

Andrew Lambert edited this page Nov 26, 2022 · 2 revisions

libcURL.IsProtocolAvailable

Method Signature

 Protected Function IsFeatureAvailable(Feature As libcURL.FeatureType) As Boolean

Parameters

Name Type Comment
Feature FeatureType The feature to query.

Return value

Returns True if libcURL is available and the requested feature is available.

Example

This example checks to see whether libcURL was built with SSL/TLS support:

 Dim available As Boolean = libcURL.IsFeatureAvailable(libcURL.FeatureType.SSL)

See also

Clone this wiki locally