次の方法で共有


Attributes コンストラクター

定義

オーバーロード

Attributes()

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

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

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

Attributes()

ソース:
Attributes.cs

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

public Attributes ();
Public Sub New ()

適用対象

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

ソース:
Attributes.cs

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

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

パラメーター

enabled
Nullable<Boolean>

オブジェクトが有効かどうかを判断します。

notBefore
Nullable<DateTime>

UTC の日付より前ではありません。

expires
Nullable<DateTime>

UTC の有効期限。

created
Nullable<DateTime>

UTC での作成時刻。

updated
Nullable<DateTime>

UTC の最終更新時刻。

適用対象