次の方法で共有


Pkcs9SigningTime コンストラクター

定義

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

オーバーロード

Pkcs9SigningTime()

Pkcs9SigningTime() コンストラクターは、 Pkcs9SigningTime クラスのインスタンスを作成します。

Pkcs9SigningTime(Byte[])

Pkcs9SigningTime(Byte[]) コンストラクターは、指定されたバイト値配列を CMS/PKCS #7 メッセージ コンテンツのエンコード済みの署名日時として使用して、Pkcs9SigningTime クラスのインスタンスを作成します。

Pkcs9SigningTime(DateTime)

Pkcs9SigningTime(DateTime) コンストラクターは、指定された署名日時を使用して Pkcs9SigningTime クラスのインスタンスを作成します。

Pkcs9SigningTime()

Pkcs9SigningTime() コンストラクターは、 Pkcs9SigningTime クラスのインスタンスを作成します。

public:
 Pkcs9SigningTime();
public Pkcs9SigningTime ();
Public Sub New ()

注釈

クラスには Pkcs9SigningTime 、次の既定のプロパティ値があります。

プロパティ 既定値
SigningTime 現在の日付と時刻

オブジェクトの特定の日付と時刻 Pkcs9SigningTime を指定する場合は、コンストラクターを Pkcs9SigningTime(DateTime) 使用します。

適用対象

Pkcs9SigningTime(Byte[])

Pkcs9SigningTime(Byte[]) コンストラクターは、指定されたバイト値配列を CMS/PKCS #7 メッセージ コンテンツのエンコード済みの署名日時として使用して、Pkcs9SigningTime クラスのインスタンスを作成します。

public:
 Pkcs9SigningTime(cli::array <System::Byte> ^ encodedSigningTime);
public Pkcs9SigningTime (byte[] encodedSigningTime);
new System.Security.Cryptography.Pkcs.Pkcs9SigningTime : byte[] -> System.Security.Cryptography.Pkcs.Pkcs9SigningTime
Public Sub New (encodedSigningTime As Byte())

パラメーター

encodedSigningTime
Byte[]

CMS/PKCS #7 メッセージのエンコード済みの署名日時を指定するバイト値配列。

適用対象

Pkcs9SigningTime(DateTime)

Pkcs9SigningTime(DateTime) コンストラクターは、指定された署名日時を使用して Pkcs9SigningTime クラスのインスタンスを作成します。

public:
 Pkcs9SigningTime(DateTime signingTime);
public Pkcs9SigningTime (DateTime signingTime);
new System.Security.Cryptography.Pkcs.Pkcs9SigningTime : DateTime -> System.Security.Cryptography.Pkcs.Pkcs9SigningTime
Public Sub New (signingTime As DateTime)

パラメーター

signingTime
DateTime

署名日時を表す DateTime 構造体。

適用対象