次の方法で共有


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 要素が存在する場合は必須です。 クロスオリジン要求の一部として許可されるヘッダーの一覧。

適用対象