次の方法で共有


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 コレクション。

こちらもご覧ください

適用対象