KeyCreateParameters コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
KeyCreateParameters() |
KeyCreateParameters クラスの新しいインスタンスを初期化します。 |
KeyCreateParameters(String, Nullable<Int32>, IList<String>, KeyAttributes, IDictionary<String,String>, String) |
KeyCreateParameters クラスの新しいインスタンスを初期化します。 |
KeyCreateParameters()
KeyCreateParameters クラスの新しいインスタンスを初期化します。
public KeyCreateParameters ();
Public Sub New ()
適用対象
KeyCreateParameters(String, Nullable<Int32>, IList<String>, KeyAttributes, IDictionary<String,String>, String)
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' です。
- keyAttributes
- KeyAttributes
- tags
- IDictionary<String,String>
キーと値のペアの形式による、アプリケーション固有のメタデータ。
- curve
- String
楕円曲線名。 有効な値については、「JsonWebKeyCurveName」を参照してください。 使用できる値は、'P-256'、'P-384'、'P-521'、'SECP256K1' です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET