ldap_parse_page_control

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This function parses the results of a search into pages.

Syntax

ULONG ldap_parse_page_control(
  LDAP* ExternalHandle,
  LDAPControl** ServerControls,
  ULONG* TotalCount,
  struct berval** Cookie
);

Parameters

  • ExternalHandle
    [in] Session handle.
  • ServerControls
    [in] Array of controls that includes a page control. The page control contains the cookie and total count fields returned by the server.
  • TotalCount
    [in] Pointer to the total count of entries returned in this page.
  • Cookie
    [out] Opaque cookie used by the server to determine its location in the result set.

Return Value

If this function succeeds, the return value is LDAP_SUCCESS.

If this function fails, it returns an error code. See the LDAP_RETCODE enumeration for a list of possible return values.

Remarks

Use this function in conjunction with ldap_create_page_control and ldap_parse_result to implement the simple paging of results by means of controls. After calling ldap_parse_page_control to retrieve the server controls and extract the cookie from the search result, call ldap_parse_result to parse the results. Then use the cookie to call ldap_create_page_control to retrieve the next page of results.

Requirements

Header winldap.h
Library wldap32.lib
Windows Embedded CE Windows CE .NET 4.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

LDAP_RETCODE
ldap_create_page_control
ldap_parse_result