Compartilhar via


CorsRule Construtores

Definição

Sobrecargas

CorsRule()

Inicializa uma nova instância da classe CorsRule.

CorsRule(IList<String>, IList<String>, Int32, IList<String>, IList<String>)

Inicializa uma nova instância da classe CorsRule.

CorsRule()

Inicializa uma nova instância da classe CorsRule.

public CorsRule ();
Public Sub New ()

Aplica-se a

CorsRule(IList<String>, IList<String>, Int32, IList<String>, IList<String>)

Inicializa uma nova instância da classe CorsRule.

public CorsRule (System.Collections.Generic.IList<string> allowedOrigins, System.Collections.Generic.IList<string> allowedMethods, int maxAgeInSeconds, System.Collections.Generic.IList<string> exposedHeaders, System.Collections.Generic.IList<string> allowedHeaders);
new Microsoft.Azure.Management.Storage.Models.CorsRule : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * int * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Storage.Models.CorsRule
Public Sub New (allowedOrigins As IList(Of String), allowedMethods As IList(Of String), maxAgeInSeconds As Integer, exposedHeaders As IList(Of String), allowedHeaders As IList(Of String))

Parâmetros

allowedOrigins
IList<String>

Obrigatório se o elemento CorsRule estiver presente. Uma lista de domínios de origem que serão permitidos via CORS ou "*" para permitir todos os domínios

allowedMethods
IList<String>

Obrigatório se o elemento CorsRule estiver presente. Uma lista de métodos HTTP que têm permissão para serem executados pela origem.

maxAgeInSeconds
Int32

Obrigatório se o elemento CorsRule estiver presente. O número de segundos que o cliente/navegador deve armazenar em cache uma resposta de simulação.

exposedHeaders
IList<String>

Obrigatório se o elemento CorsRule estiver presente. Uma lista de cabeçalhos de resposta a serem expostos a clientes CORS.

allowedHeaders
IList<String>

Obrigatório se o elemento CorsRule estiver presente. Uma lista de cabeçalhos com permissão para fazer parte da solicitação entre origens.

Aplica-se a