CefReferrerPolicy Enumeration |
Policy for how the Referrer HTTP header value will be sent during navigation.
If the `--no-referrers` command-line flag is specified then the policy value
will be ignored and the Referrer value will never be sent.
Namespace:
Internal.Xilium.CefGlue
Assembly:
NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax public enum CefReferrerPolicy
Members
| Member name | Value | Description |
---|
| Always | 0 |
Always send the complete Referrer value.
|
| Default | 1 |
Use the default policy. This is REFERRER_POLICY_ORIGIN_WHEN_CROSS_ORIGIN
when the `--reduced-referrer-granularity` command-line flag is specified
and REFERRER_POLICY_NO_REFERRER_WHEN_DOWNGRADE otherwise.
|
| NoReferrerWhenDowngrade | 2 |
When navigating from HTTPS to HTTP do not send the Referrer value.
Otherwise, send the complete Referrer value.
|
| Never | 3 |
Never send the Referrer value.
|
| Origin | 4 |
Only send the origin component of the Referrer value.
|
| OriginWhenCrossOrigin | 5 |
When navigating cross-origin only send the origin component of the Referrer
value. Otherwise, send the complete Referrer value.
|
See Also