CmsRecipientCollection コンストラクター

定義

CmsRecipientCollection クラスのインスタンスを作成します。

オーバーロード

名前 説明
CmsRecipientCollection()

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

CmsRecipientCollection(CmsRecipient)

CmsRecipientCollection(CmsRecipient) コンストラクターは、CmsRecipientCollection クラスのインスタンスを作成し、指定した受信者を追加します。

CmsRecipientCollection(SubjectIdentifierType, X509Certificate2Collection)

CmsRecipientCollection(SubjectIdentifierType, X509Certificate2Collection) コンストラクターは、CmsRecipientCollection クラスのインスタンスを作成し、指定されたサブジェクト識別子と受信者を識別する証明書のセットに基づいて受信者を追加します。

CmsRecipientCollection()

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

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

こちらもご覧ください

適用対象

CmsRecipientCollection(CmsRecipient)

CmsRecipientCollection(CmsRecipient) コンストラクターは、CmsRecipientCollection クラスのインスタンスを作成し、指定した受信者を追加します。

public:
 CmsRecipientCollection(System::Security::Cryptography::Pkcs::CmsRecipient ^ recipient);
public CmsRecipientCollection(System.Security.Cryptography.Pkcs.CmsRecipient recipient);
new System.Security.Cryptography.Pkcs.CmsRecipientCollection : System.Security.Cryptography.Pkcs.CmsRecipient -> System.Security.Cryptography.Pkcs.CmsRecipientCollection
Public Sub New (recipient As CmsRecipient)

パラメーター

recipient
CmsRecipient

指定した CMS/PKCS #7 受信者を表す CmsRecipient クラスのインスタンス。

こちらもご覧ください

適用対象

CmsRecipientCollection(SubjectIdentifierType, X509Certificate2Collection)

CmsRecipientCollection(SubjectIdentifierType, X509Certificate2Collection) コンストラクターは、CmsRecipientCollection クラスのインスタンスを作成し、指定されたサブジェクト識別子と受信者を識別する証明書のセットに基づいて受信者を追加します。

public:
 CmsRecipientCollection(System::Security::Cryptography::Pkcs::SubjectIdentifierType recipientIdentifierType, System::Security::Cryptography::X509Certificates::X509Certificate2Collection ^ certificates);
public CmsRecipientCollection(System.Security.Cryptography.Pkcs.SubjectIdentifierType recipientIdentifierType, System.Security.Cryptography.X509Certificates.X509Certificate2Collection certificates);
new System.Security.Cryptography.Pkcs.CmsRecipientCollection : System.Security.Cryptography.Pkcs.SubjectIdentifierType * System.Security.Cryptography.X509Certificates.X509Certificate2Collection -> System.Security.Cryptography.Pkcs.CmsRecipientCollection
Public Sub New (recipientIdentifierType As SubjectIdentifierType, certificates As X509Certificate2Collection)

パラメーター

recipientIdentifierType
SubjectIdentifierType

サブジェクト識別子の種類を指定する SubjectIdentifierType 列挙体のメンバー。

certificates
X509Certificate2Collection

受信者を識別する証明書を含む X509Certificate2Collection コレクション。

こちらもご覧ください

適用対象