CefUrlRequestOptions Enumeration |
Namespace:
Internal.Xilium.CefGlue
Assembly:
NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax [FlagsAttribute]
public enum CefUrlRequestOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
Default behavior.
|
| SkipCache | 1 |
If set the cache will be skipped when handling the request.
|
| AllowCachedCredentials | 2 |
If set user name, password, and cookies may be sent with the request, and
cookies may be saved from the response.
|
| ReportUploadProgress | 8 |
If set upload progress events will be generated when a request has a body.
|
| NoDownloadData | 64 |
If set the CefUrlRequestClient.OnDownloadData method will not be called.
|
| NoRetryOn5XX | 128 |
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.
|
See Also