Click or drag to resize

ReferrerPolicy Enumeration

Version 75.1.140

[Missing <summary> documentation for "T:CefSharp.ReferrerPolicy"]

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 75.1.140.0 (75.1.140.0)
Syntax
public enum ReferrerPolicy
Members
  Member nameValueDescription
Always0 Always send the complete Referrer value.
Default1 Use the default policy. This is OriginWhenCrossOrigin when the `--reduced-referrer-granularity` command-line flag is specified and NoReferrerWhenDowngrade 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