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

IssuerAttributes 构造函数

定义

重载

IssuerAttributes()

初始化 IssuerAttributes 类的新实例。

IssuerAttributes(Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>)

初始化 IssuerAttributes 类的新实例。

IssuerAttributes()

Source:
IssuerAttributes.cs

初始化 IssuerAttributes 类的新实例。

public IssuerAttributes ();
Public Sub New ()

适用于

IssuerAttributes(Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>)

Source:
IssuerAttributes.cs

初始化 IssuerAttributes 类的新实例。

public IssuerAttributes (bool? enabled = default, DateTime? created = default, DateTime? updated = default);
new Microsoft.Azure.KeyVault.Models.IssuerAttributes : Nullable<bool> * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.KeyVault.Models.IssuerAttributes
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional created As Nullable(Of DateTime) = Nothing, Optional updated As Nullable(Of DateTime) = Nothing)

参数

enabled
Nullable<Boolean>

确定是否启用颁发者。

created
Nullable<DateTime>

创建时间(UTC)。

updated
Nullable<DateTime>

上次更新时间(UTC)。

适用于