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

KeyClient.ImportKeyAsync 方法

定义

重载

ImportKeyAsync(ImportKeyOptions, CancellationToken)

导入外部创建的密钥,存储它,然后将密钥参数和属性返回给客户端。

ImportKeyAsync(String, JsonWebKey, CancellationToken)

导入外部创建的密钥,存储它,然后将密钥参数和属性返回给客户端。

ImportKeyAsync(ImportKeyOptions, CancellationToken)

Source:
KeyClient.cs
Source:
KeyClient.cs

导入外部创建的密钥,存储它,然后将密钥参数和属性返回给客户端。

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>> ImportKeyAsync (Azure.Security.KeyVault.Keys.ImportKeyOptions importKeyOptions, System.Threading.CancellationToken cancellationToken = default);
abstract member ImportKeyAsync : Azure.Security.KeyVault.Keys.ImportKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
override this.ImportKeyAsync : Azure.Security.KeyVault.Keys.ImportKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
Public Overridable Function ImportKeyAsync (importKeyOptions As ImportKeyOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultKey))

参数

importKeyOptions
ImportKeyOptions

密钥导入配置对象,其中包含有关 JsonWebKey 正在导入的 的信息。

cancellationToken
CancellationToken

控制 CancellationToken 请求生存期的 。

返回

KeyVaultKey导入的 。

例外

importKeyOptions 为 null。

服务器返回了错误。 有关从服务器返回的详细信息,请参阅 Message

注解

导入密钥操作可用于将任何密钥类型导入 Azure 密钥保管库。 如果命名的密钥已存在,Azure 密钥保管库将创建该密钥的新版本。 此操作需要密钥/导入权限。

适用于

ImportKeyAsync(String, JsonWebKey, CancellationToken)

Source:
KeyClient.cs
Source:
KeyClient.cs

导入外部创建的密钥,存储它,然后将密钥参数和属性返回给客户端。

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>> ImportKeyAsync (string name, Azure.Security.KeyVault.Keys.JsonWebKey keyMaterial, System.Threading.CancellationToken cancellationToken = default);
abstract member ImportKeyAsync : string * Azure.Security.KeyVault.Keys.JsonWebKey * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
override this.ImportKeyAsync : string * Azure.Security.KeyVault.Keys.JsonWebKey * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
Public Overridable Function ImportKeyAsync (name As String, keyMaterial As JsonWebKey, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultKey))

参数

name
String

键的名称。

keyMaterial
JsonWebKey

JsonWebKey正在导入的 。

cancellationToken
CancellationToken

控制 CancellationToken 请求生存期的 。

返回

KeyVaultKey导入的 。

例外

name 是一个空字符串。

namekeyMaterial 为 null。

服务器返回了错误。 有关从服务器返回的详细信息,请参阅 Message

注解

导入密钥操作可用于将任何密钥类型导入 Azure 密钥保管库。 如果命名的密钥已存在,Azure 密钥保管库将创建该密钥的新版本。 此操作需要密钥/导入权限。

适用于