INapCertRelyingParty::GetSubscribedRelyingParties method

Note

The Network Access Protection platform is not available starting with Windows 10

The GetSubscribedRelyingParties method gets a list of relying parties that have subscribed.

Syntax

HRESULT GetSubscribedRelyingParties(
  [out] EnforcementEntityCount *count,
  [out]  EnforcementEntityId   **relyingParties
);

Parameters

count [out]

A pointer to a EnforcementEntityCount that contains the number of subscribed relying parties.

relyingParties [out]

A pointer to a pointer to an EnforcementEntityId that contains the list of subscribed relying parties.

Return value

Returns one of the following error codes based on the result of this operation.

Return code Description
S_OK
The operation is successful.
E_ACCESSDENIED
Permissions error, access denied.
E_OUTOFMEMORY
System resource limit, could not perform the operation.

Remarks

The caller must free the relyingParties parameter using CoTaskMemFree.

Requirements

Requirement Value
Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2008 [desktop apps only]
Header
NapCertRelyingParty.h
IDL
NapCertRelyingParty.idl

See also

INapCertRelyingParty