Pkcs9DocumentDescription Constructors

Definition

Overloads

Pkcs9DocumentDescription()

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

Pkcs9DocumentDescription(Byte[])

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

Pkcs9DocumentDescription(String)

The Pkcs9DocumentDescription(String) constructor creates an instance of the Pkcs9DocumentDescription class by using the specified description of the content of a CMS/PKCS #7 message.

Pkcs9DocumentDescription()

Source:
Pkcs9DocumentDescription.cs
Source:
Pkcs9DocumentDescription.cs
Source:
Pkcs9DocumentDescription.cs
Source:
Pkcs9DocumentDescription.cs

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

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

Applies to

Pkcs9DocumentDescription(Byte[])

Source:
Pkcs9DocumentDescription.cs
Source:
Pkcs9DocumentDescription.cs
Source:
Pkcs9DocumentDescription.cs
Source:
Pkcs9DocumentDescription.cs

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

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

Parameters

encodedDocumentDescription
Byte[]

An array of byte values that specifies the encoded description of the CMS/PKCS #7 message.

Applies to

Pkcs9DocumentDescription(String)

Source:
Pkcs9DocumentDescription.cs
Source:
Pkcs9DocumentDescription.cs
Source:
Pkcs9DocumentDescription.cs
Source:
Pkcs9DocumentDescription.cs

The Pkcs9DocumentDescription(String) constructor creates an instance of the Pkcs9DocumentDescription class by using the specified description of the content of a CMS/PKCS #7 message.

public:
 Pkcs9DocumentDescription(System::String ^ documentDescription);
public Pkcs9DocumentDescription (string documentDescription);
new System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription : string -> System.Security.Cryptography.Pkcs.Pkcs9DocumentDescription
Public Sub New (documentDescription As String)

Parameters

documentDescription
String

An instance of the String class that specifies the description for the CMS/PKCS #7 message.

Applies to