AdmDirectorySynchronizationOptions

The AdmDirectorySynchronizationOptions enumeration specifies options for directory synchronization within a domain.

Syntax

enum AdmDirectorySynchronizationOptions
{
    None              =  0,            //0x0
    ObjectSecurity    =  1,            //0x1
    ParentsFirst      =  2048,         //0x800
    PublicDataOnly    =  8192,         //0x2000
    IncrementalValues =  -2147483648,  //unchecked(0x80000000)
}

Constants

  • Flag

  • Description

  • None

  • No flags are set.

  • ObjectSecurity

  • If this flag is set, the caller doesn't need rights to replicate, but is allowed to see only the objects and attributes that are accessible to the caller. If this flag is not set, the caller must have the right to replicate changes.

  • ParentsFirst

  • If this flag is set, parents are returned before children.

  • PublicDataOnly

  • If this flag is set, private data is not returned in the search results.

  • IncrementalValues

  • If this flag is set, only the changed values are returned. If this flag is not set, all values of a multi-valued attribute, up to a server-specified limit, are returned when any value changes.

Requirements

Minimum required version: 2009.1

See also