//
// This file manually written from cef/include/internal/cef_types.h.
// C API name: cef_urlrequest_flags_t.
//
namespace Cef3
{
using System;
[Flags]
public enum CefUrlRequestOptions
{
///
/// Default behavior.
///
None = 0,
///
/// If set the cache will be skipped when handling the request.
///
SkipCache = 1 << 0,
///
/// If set user name, password, and cookies may be sent with the request, and
/// cookies may be saved from the response.
///
AllowCachedCredentials = 1 << 1,
///
/// If set upload progress events will be generated when a request has a body.
///
ReportUploadProgress = 1 << 3,
///
/// If set the headers sent and received for the request will be recorded.
///
ReportRawHeaders = 1 << 5,
///
/// If set the CefUrlRequestClient.OnDownloadData method will not be called.
///
NoDownloadData = 1 << 6,
///
/// If set 5XX redirect errors will be propagated to the observer instead of
/// automatically re-tried. This currently only applies for requests
/// originated in the browser process.
///
NoRetryOn5XX = 1 << 7,
}
}