IOCSPPropertyCollection::GetAllProperties method (certadm.h)

The GetAllProperties method gets all properties in a property set.

Syntax

HRESULT GetAllProperties(
  [out] VARIANT *pVarProperties
);

Parameters

[out] pVarProperties

A pointer to a safe array that contains the properties as name-value pairs.

This array is a two-dimensional array of elements, each of type VARIANT. The array contains one row for each named property in the collection. Each row contains two columns: the property name and the property value.

Return value

C++

If the method succeeds, it returns S_OK.

If the method fails, it returns an HRESULT value that indicates the error. For a list of common error codes, see Common HRESULT Values.

VB

A safe array that contains the properties as name-value pairs.

This array is a two-dimensional array of elements, each of type Variant. The array contains one row for each named property in the collection. Each row contains two columns: the property name and the property value.

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows Server 2008 Datacenter, Windows Server 2008 Enterprise [desktop apps only]
Target Platform Windows
Header certadm.h (include Certserv.h)
Library Certadm.lib
DLL Certadm.dll

See also

IOCSPPropertyCollection