Pkcs9DocumentName Constructors

Definition

Initializes a new instance of the Pkcs9DocumentName class.

Overloads

Pkcs9DocumentName()

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

Pkcs9DocumentName(Byte[])

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

Pkcs9DocumentName(String)

The Pkcs9DocumentName(String) constructor creates an instance of the Pkcs9DocumentName class by using the specified name for the CMS/PKCS #7 message.

Pkcs9DocumentName()

Source:
Pkcs9DocumentName.cs
Source:
Pkcs9DocumentName.cs
Source:
Pkcs9DocumentName.cs
Source:
Pkcs9DocumentName.cs

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

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

Applies to

Pkcs9DocumentName(Byte[])

Source:
Pkcs9DocumentName.cs
Source:
Pkcs9DocumentName.cs
Source:
Pkcs9DocumentName.cs
Source:
Pkcs9DocumentName.cs

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

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

Parameters

encodedDocumentName
Byte[]

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

Applies to

Pkcs9DocumentName(String)

Source:
Pkcs9DocumentName.cs
Source:
Pkcs9DocumentName.cs
Source:
Pkcs9DocumentName.cs
Source:
Pkcs9DocumentName.cs

The Pkcs9DocumentName(String) constructor creates an instance of the Pkcs9DocumentName class by using the specified name for the CMS/PKCS #7 message.

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

Parameters

documentName
String

A String object that specifies the name for the CMS/PKCS #7 message.

Applies to