azure-storage-files-shares
Public Attributes | List of all members
Azure::Storage::Files::Shares::Models::CorsRule Struct Referencefinal

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.

#include <share_rest_client.hpp>

Public Attributes

std::string AllowedOrigins
 
std::string AllowedMethods
 
std::string AllowedHeaders
 
std::string ExposedHeaders
 
int32_t MaxAgeInSeconds = int32_t()
 

Member Data Documentation

◆ AllowedHeaders

std::string Azure::Storage::Files::Shares::Models::CorsRule::AllowedHeaders

The request headers that the origin domain may specify on the CORS request.

◆ AllowedMethods

std::string Azure::Storage::Files::Shares::Models::CorsRule::AllowedMethods

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

◆ AllowedOrigins

std::string Azure::Storage::Files::Shares::Models::CorsRule::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

std::string Azure::Storage::Files::Shares::Models::CorsRule::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

int32_t Azure::Storage::Files::Shares::Models::CorsRule::MaxAgeInSeconds = int32_t()

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


The documentation for this struct was generated from the following file: