DataLakeCorsRule Class

Definition

CORS is an HTTP feature that enables a web application running under one ___domain to access resources in another ___domain. Web browsers implement a security restriction known as same-origin policy that prevents a web page from calling APIs in a different ___domain; CORS provides a secure way to allow one ___domain (the origin ___domain) to call APIs in another ___domain.

public class DataLakeCorsRule
type DataLakeCorsRule = class
Public Class DataLakeCorsRule
Inheritance
DataLakeCorsRule

Constructors

DataLakeCorsRule()

Properties

AllowedHeaders

the request headers that the origin ___domain may specify on the CORS request.

AllowedMethods

The methods (HTTP request verbs) that the origin ___domain may use for a CORS request. (comma separated).

AllowedOrigins

The origin domains that are permitted to make a request against the storage service via CORS. The origin ___domain is the ___domain from which the request originates. Note that the origin must be an exact case-sensitive match with the origin that the user age sends to the service. You can also use the wildcard character '*' to allow all origin domains to make requests via CORS.

ExposedHeaders

The response headers that may be sent in the response to the CORS request and exposed by the browser to the request issuer.

MaxAgeInSeconds

The maximum amount time that a browser should cache the preflight OPTIONS request.

Applies to