你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CorsRule 构造函数

定义

重载

CorsRule()

初始化 CorsRule 类的新实例。

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

初始化 CorsRule 类的新实例。

CorsRule()

初始化 CorsRule 类的新实例。

public CorsRule ();
Public Sub New ()

适用于

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

初始化 CorsRule 类的新实例。

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

参数

allowedOrigins
IList<String>

如果存在 CorsRule 元素,则为必需项。 允许通过 CORS 或“*”允许所有域的源域列表

allowedMethods
IList<AllowedMethods>

如果存在 CorsRule 元素,则为必需项。 允许由源执行的 HTTP 方法的列表。

maxAgeInSeconds
Int32

如果存在 CorsRule 元素,则为必需项。 客户端/浏览器应缓存预检响应的秒数。

exposedHeaders
IList<String>

如果存在 CorsRule 元素,则为必需项。 要向 CORS 客户端公开的响应标头列表。

allowedHeaders
IList<String>

如果存在 CorsRule 元素,则为必需项。 允许作为跨域请求的一部分的标头列表。

适用于