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("NoneWithTrailingDotRemoved")]
public enum RequestCache

Fields

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

Remarks