Enum ReferrerPolicy
Namespace: Aspose.Svg.Builder
Assembly: Aspose.SVG.dll (25.5.0)
Specifies the referrer policy to be used when fetching resources.
[ComVisible(true)]
public enum ReferrerPolicy
Fields
NoReferrer = 1
The Referer header will not be sent.
NoReferrerWhenDowngrade = 2
The Referer header will not be sent to origins with less security (HTTPS -> HTTP).
None = 0
No referrer policy is set.
Origin = 4
Only the origin of the document will be sent as the Referer header.
OriginWhenCrossOrigin = 6
The full URL will be sent as the Referer header for same-origin requests, but only the origin for cross-origin requests.
SameOrigin = 3
The Referer header will be sent for same-origin requests only.
StrictOrigin = 5
Only the origin of the document will be sent as the Referer header for secure contexts.
StrictOriginWhenCrossOrigin = 7
Only the origin of the document will be sent as the Referer header for same-origin requests, but no header for cross-origin requests in insecure contexts.
UnsafeUrl = 8
The full URL, including the path and query string, will always be sent as the Referer header.