BrowserRequestMode Enum

Definition

The mode of the request. This is used to determine if cross-origin requests lead to valid responses

public enum class BrowserRequestMode
public enum BrowserRequestMode
type BrowserRequestMode = 
Public Enum BrowserRequestMode
Inheritance
BrowserRequestMode

Fields

Cors 2

Allows cross-origin requests, for example to access various APIs offered by 3rd party vendors.

Navigate 3

A mode for supporting navigation.

NoCors 1

Prevents the method from being anything other than HEAD, GET or POST, and the headers from being anything other than simple headers.

SameOrigin 0

If a request is made to another origin with this mode set, the result is simply an error

Applies to