namespace CurlSharp.Enums
{
///
/// Contains values used to specify the preference of libcurl between
/// using user names and passwords from your ~/.netrc file, relative to
/// user names and passwords in the URL supplied with
/// . This is passed when using
/// the option in a call
/// to
///
public enum CurlNetrcOption
{
///
/// The library will ignore the file and use only the information
/// in the URL. This is the default.
///
Ignored = 0,
///
/// The use of your ~/.netrc file is optional, and information in the
/// URL is to be preferred. The file will be scanned with the host
/// and user name (to find the password only) or with the host only,
/// to find the first user name and password after that machine,
/// which ever information is not specified in the URL.
///
/// Undefined values of the option will have this effect.
///
///
Optional = 1,
///
/// This value tells the library that use of the file is required,
/// to ignore the information in the URL, and to search the file
/// with the host only.
///
Required = 2,
///
/// Last entry in enumeration; do not use in application code.
///
Last = 3
};
}