namespace CurlSharp
{
///
/// Contains values used to specify the time condition when using
/// the option in a call
/// to
///
public enum CurlTimeCond
{
///
/// Use no time condition.
///
None = 0,
///
/// The time condition is true if the resource has been modified
/// since the date/time passed in
/// .
///
IfModSince = 1,
///
/// True if the resource has not been modified since the date/time
/// passed in .
///
IfUnmodSince = 2,
///
/// True if the resource's last modification date/time equals that
/// passed in .
///
LastMod = 3,
///
/// Last entry in enumeration; do not use in application code.
///
Last = 4
};
}