次の方法で共有


KeyCreateParameters コンストラクター

定義

オーバーロード

KeyCreateParameters()

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

KeyCreateParameters(String, Nullable<Int32>, IList<String>, KeyAttributes, IDictionary<String,String>, String)

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

KeyCreateParameters()

ソース:
KeyCreateParameters.cs

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

public KeyCreateParameters ();
Public Sub New ()

適用対象

KeyCreateParameters(String, Nullable<Int32>, IList<String>, KeyAttributes, IDictionary<String,String>, String)

ソース:
KeyCreateParameters.cs

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

public KeyCreateParameters (string kty, int? keySize = default, System.Collections.Generic.IList<string> keyOps = default, Microsoft.Azure.KeyVault.Models.KeyAttributes keyAttributes = default, System.Collections.Generic.IDictionary<string,string> tags = default, string curve = default);
new Microsoft.Azure.KeyVault.Models.KeyCreateParameters : string * Nullable<int> * System.Collections.Generic.IList<string> * Microsoft.Azure.KeyVault.Models.KeyAttributes * System.Collections.Generic.IDictionary<string, string> * string -> Microsoft.Azure.KeyVault.Models.KeyCreateParameters
Public Sub New (kty As String, Optional keySize As Nullable(Of Integer) = Nothing, Optional keyOps As IList(Of String) = Nothing, Optional keyAttributes As KeyAttributes = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional curve As String = Nothing)

パラメーター

kty
String

作成するキーの種類。 有効な値については、「JsonWebKeyType」を参照してください。 使用できる値は、'EC'、'EC-HSM'、'RSA'、'RSA-HSM'、'oct' です。

keySize
Nullable<Int32>

キーのサイズ (バイト単位)。 たとえば、1024 や 2048 などです。

keyOps
IList<String>
keyAttributes
KeyAttributes
tags
IDictionary<String,String>

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

curve
String

楕円曲線名。 有効な値については、「JsonWebKeyCurveName」を参照してください。 使用できる値は、'P-256'、'P-384'、'P-521'、'SECP256K1' です。

適用対象