System.Curl.CURL_NETRC_OPTION

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

CURL_NETRC_OPTION = (
CURL_NETRC_IGNORED,     { The .netrc will never be read. This is the default. }
CURL_NETRC_OPTIONAL,    { A user:password in the URL will be preferred to one in the .netrc. }
CURL_NETRC_REQUIRED,    { A user:password in the URL will be ignored.
* Unless one is set programmatically, the .netrc
* will be queried. }
CURL_NETRC_LAST
);

C++

enum DECLSPEC_DENUM CURL_NETRC_OPTION : unsigned char { CURL_NETRC_IGNORED, CURL_NETRC_OPTIONAL, CURL_NETRC_REQUIRED, CURL_NETRC_LAST };

Properties

Type Visibility Source Unit Parent
enum public
System.Curl.pas
System.Curl.hpp
System.Curl System.Curl

Description

Embarcadero Technologies does not currently have any additional information.