次の方法で共有


IssuerAttributes コンストラクター

定義

オーバーロード

IssuerAttributes()

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

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

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

IssuerAttributes()

ソース:
IssuerAttributes.cs

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

public IssuerAttributes ();
Public Sub New ()

適用対象

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

ソース:
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 での最終更新時刻。

適用対象