X509Certificate2Collection.Insert(Int32, X509Certificate2) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将对象插入到 X509Certificate2Collection 对象的指定索引位置。
public:
void Insert(int index, System::Security::Cryptography::X509Certificates::X509Certificate2 ^ certificate);
public void Insert (int index, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate);
override this.Insert : int * System.Security.Cryptography.X509Certificates.X509Certificate2 -> unit
Public Sub Insert (index As Integer, certificate As X509Certificate2)
参数
- index
- Int32
从零开始的索引,在该处插入 certificate
。
- certificate
- X509Certificate2
要插入的 X509Certificate2 对象。
例外
certificate
为 null
。
注解
Count如果属性已等于列表的容量,则通过在插入新元素之前自动重新分配内部数组来增加容量。
如果 index
等于 Count, certificate
则添加到集合末尾。