DirectorySynchronizationOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The DirectorySynchronizationOptions enumeration specifies the behavior of the search in a DirSyncRequestControl object.
This enumeration supports a bitwise combination of its member values.
public enum class DirectorySynchronizationOptions
[System.Flags]
public enum DirectorySynchronizationOptions
[<System.Flags>]
type DirectorySynchronizationOptions =
Public Enum DirectorySynchronizationOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No options used. The value equals 0 or 0x0. |
ObjectSecurity | 1 | If this option is used, the caller requires no rights, but can only view objects and attributes that are accessible to the caller. If this option is not used, the caller must have the replicate changes right. The value equals 1 or 0x1. |
ParentsFirst | 2048 | Return parents before children, when parents would otherwise appear later in the replication stream. The value equals 2048 or 0x800. |
PublicDataOnly | 8192 | Do not return private data in search results. The value equals 8192 or 0x2000. |
IncrementalValues | 2147483648 | If this option is used, only changed values are returned. If this option is not used, all values, up to a server-specified limit, in a multi-valued attribute, are returned when a value changes. The value equals 2147483648 or 0x80000000. |