CertEnumCRLContextProperties function
The CertEnumCRLContextProperties function retrieves the first or next extended property associated with a certificate revocation list (CRL) context. Used in a loop, this function can retrieve in sequence all extended properties associated with a CRL context.
Syntax
DWORD WINAPI CertEnumCRLContextProperties( _In_ PCCRL_CONTEXT pCrlContext, _In_ DWORD dwPropId );
Parameters
- pCrlContext [in]
-
A pointer to a CRL_CONTEXT structure.
- dwPropId [in]
-
Property number of the last property enumerated. To get the first property, dwPropId is zero. To retrieve subsequent properties, dwPropId is set to the property number returned by the last call to the function. To enumerate all the properties, function calls continue until the function returns zero.
Applications can call CertGetCRLContextProperty with the dwPropId returned by this function to retrieve that property's data.
Return value
The return value is a DWORD value that identifies a CRL context's property. The DWORD value returned by one call of the function can be supplied as the dwPropId in a subsequent call to the function. If there are no more properties to be enumerated or if the function fails, zero is returned.
Examples
See Example C Program: Certificate Store Operations.
Requirements
|
Minimum supported client |
Windows XP [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows Server 2003 [desktop apps | Windows Store apps] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also