Table of Contents

Enum RequestCache

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The cache read-only property of the Request interface contains the cache mode of the request. It controls how the request will interact with the browser's HTTP cache.

[To("None")]
public enum RequestCache

Fields

[EnumValue("default")] Default = 0
[EnumValue("no-store")] NoStore = 1
[EnumValue("reload")] Reload = 2
[EnumValue("no-cache")] NoCache = 3
[EnumValue("force-cache")] ForceCache = 4
[EnumValue("only-if-cached")] OnlyIfCached = 5

Remarks