Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

BrowserRequestMode Enum

Definition

Namespace:
Microsoft.AspNetCore.Components.WebAssembly.Http
Assembly:
Microsoft.AspNetCore.Components.WebAssembly.dll
Package:
Microsoft.AspNetCore.Components.WebAssembly v10.0.0
Package:
Microsoft.AspNetCore.Components.WebAssembly v11.0.0-preview.4.26230.115
Package:
Microsoft.AspNetCore.Components.WebAssembly v3.2.1
Package:
Microsoft.AspNetCore.Components.WebAssembly v5.0.9
Package:
Microsoft.AspNetCore.Components.WebAssembly v6.0.6
Package:
Microsoft.AspNetCore.Components.WebAssembly v7.0.5
Package:
Microsoft.AspNetCore.Components.WebAssembly v8.0.19
Package:
Microsoft.AspNetCore.Components.WebAssembly v9.0.8
Source:
BrowserRequestMode.cs
Source:
BrowserRequestMode.cs
Source:
BrowserRequestMode.cs
Source:
BrowserRequestMode.cs
Source:
BrowserRequestMode.cs
Source:
BrowserRequestMode.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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

Name Value Description
SameOrigin 0

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

NoCors 1

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

Cors 2

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

Navigate 3

A mode for supporting navigation.

Applies to


Feedback

Was this page helpful?