getListOfDigitalId method: DigitalCertStore class
Syntax
getListOfDigitalId(&array_digitalIDs)
Description
Use the getListOfDigitalId method to return the list of all digital IDs defined in the certification store.
Parameters
| Parameter | Description |
|---|---|
|
&array_digitalIDs |
Specifies an already instantiated array of string to store the returned list of digital IDs. |
Returns
A return code as a numeric value:
| Numeric Value | Description |
|---|---|
|
0 |
The method executed successfully. |
|
64 |
No digital IDs are defined in the certification store. |
Example
&arrIds = CreateArrayRept("", 0);
&errCode = &secStore.getListOfDigitalId(&arrIds);