次の方法で共有


KeyBundle コンストラクター

定義

オーバーロード

KeyBundle()

KeyBundle クラスの新しいインスタンスを初期化します。

KeyBundle(JsonWebKey, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>)

KeyBundle クラスの新しいインスタンスを初期化します。

KeyBundle()

ソース:
KeyBundle.cs

KeyBundle クラスの新しいインスタンスを初期化します。

public KeyBundle ();
Public Sub New ()

適用対象

KeyBundle(JsonWebKey, KeyAttributes, IDictionary<String,String>, Nullable<Boolean>)

ソース:
KeyBundle.cs

KeyBundle クラスの新しいインスタンスを初期化します。

public KeyBundle (Microsoft.Azure.KeyVault.WebKey.JsonWebKey key = default, Microsoft.Azure.KeyVault.Models.KeyAttributes attributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, bool? managed = default);
new Microsoft.Azure.KeyVault.Models.KeyBundle : Microsoft.Azure.KeyVault.WebKey.JsonWebKey * Microsoft.Azure.KeyVault.Models.KeyAttributes * System.Collections.Generic.IDictionary<string, string> * Nullable<bool> -> Microsoft.Azure.KeyVault.Models.KeyBundle
Public Sub New (Optional key As JsonWebKey = Nothing, Optional attributes As KeyAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional managed As Nullable(Of Boolean) = Nothing)

パラメーター

key
JsonWebKey

Json Web キー。

attributes
KeyAttributes

キー管理属性。

tags
IDictionary<String,String>

キーと値のペアの形式による、アプリケーション固有のメタデータ。

managed
Nullable<Boolean>

True キーの有効期間がキー コンテナーによって管理されている場合。 これが証明書をバックアップするキーの場合、マネージドは true になります。

適用対象