Click or drag to resize

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
C#
public enum CefReferrerPolicy
Members
  Member nameValueDescription
Always0 Always send the complete Referrer value.
Default1 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.
NoReferrerWhenDowngrade2 When navigating from HTTPS to HTTP do not send the Referrer value. Otherwise, send the complete Referrer value.
Never3 Never send the Referrer value.
Origin4 Only send the origin component of the Referrer value.
OriginWhenCrossOrigin5 When navigating cross-origin only send the origin component of the Referrer value. Otherwise, send the complete Referrer value.
See Also