CertInfos Collection
The CertInfos collection
contains CertInfo objects which provide details about S/MIME or SSL certificates.
SMIME.EnumerateCerts method
of the SMIME object returns CertInfos
collection based on your search criteria.
Syntax
CertInfos.property
| Properties | |
| Count | Returns the number of the objects in the collection. |
| Item | Returns a reference to a particular object in the collection. |
Remarks
Item
is the default property of the collection, so CertInfos.Item(index)
and CertInfos(index) are equivalents.
To iterate through the collection, you can use either For .. Each
statement or any common loop statement such as For .. To.
See SMIME.EnumerateCerts topic for usage example.
See Also
CertInfo Object, SMIME.EnumerateCerts Method