IIdentityStore::GetAt method (identitystore.h)

The GetAt method retrieves an IIdentityProvider interface pointer for the specified identity provider.

Syntax

HRESULT GetAt(
  [in]      const DWORD dwProvider,
  [in, out] GUID        *pProvGuid,
  [out]     IUnknown    **ppIdentityProvider
);

Parameters

[in] dwProvider

The index of the identity provider to retrieve.

[in, out] pProvGuid

On output, this parameter receives a pointer to the GUID of the identity provider that this function retrieves.

[out] ppIdentityProvider

A pointer to the IIdentityProvider interface pointer that this method retrieves.

Return value

If the method succeeds, it returns S_OK.

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

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Target Platform Windows
Header identitystore.h

See also

IIdentityStore