Pkcs9SigningTime Constructors

Definition

Initializes a new instance of the Pkcs9SigningTime class.

Overloads

Pkcs9SigningTime()

The Pkcs9SigningTime() constructor creates an instance of the Pkcs9SigningTime class.

Pkcs9SigningTime(Byte[])

The Pkcs9SigningTime(Byte[]) constructor creates an instance of the Pkcs9SigningTime class by using the specified array of byte values as the encoded signing date and time of the content of a CMS/PKCS #7 message.

Pkcs9SigningTime(DateTime)

The Pkcs9SigningTime(DateTime) constructor creates an instance of the Pkcs9SigningTime class by using the specified signing date and time.

Pkcs9SigningTime()

Source:
Pkcs9SigningTime.cs
Source:
Pkcs9SigningTime.cs
Source:
Pkcs9SigningTime.cs
Source:
Pkcs9SigningTime.cs

The Pkcs9SigningTime() constructor creates an instance of the Pkcs9SigningTime class.

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

Remarks

The Pkcs9SigningTime class has the following default property values.

Property Default value
SigningTime The current date and time

If you want to specify a specific date and time for the Pkcs9SigningTime object, use the Pkcs9SigningTime(DateTime) constructor.

Applies to

Pkcs9SigningTime(Byte[])

Source:
Pkcs9SigningTime.cs
Source:
Pkcs9SigningTime.cs
Source:
Pkcs9SigningTime.cs
Source:
Pkcs9SigningTime.cs

The Pkcs9SigningTime(Byte[]) constructor creates an instance of the Pkcs9SigningTime class by using the specified array of byte values as the encoded signing date and time of the content of a CMS/PKCS #7 message.

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())

Parameters

encodedSigningTime
Byte[]

An array of byte values that specifies the encoded signing date and time of the CMS/PKCS #7 message.

Applies to

Pkcs9SigningTime(DateTime)

Source:
Pkcs9SigningTime.cs
Source:
Pkcs9SigningTime.cs
Source:
Pkcs9SigningTime.cs
Source:
Pkcs9SigningTime.cs

The Pkcs9SigningTime(DateTime) constructor creates an instance of the Pkcs9SigningTime class by using the specified signing date and time.

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)

Parameters

signingTime
DateTime

A DateTime structure that represents the signing date and time of the signature.

Applies to