DirSyncRequestControl Constructors

Definition

The DirSyncRequestControl() constructor creates an instance of the DirSyncRequestControl class.

Overloads

DirSyncRequestControl()

The DirSyncRequestControl() constructor creates an instance of the DirSyncRequestControl class.

DirSyncRequestControl(Byte[])

The DirSyncRequestControl(Byte[]) constructor creates an instance of the DirSyncRequestControl class using the specified parameter.

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions)

The DirSyncRequestControl(Byte[], DirectorySynchronizationOptions) constructor creates an instance of the DirSyncRequestControl class using the specified parameters.

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions, Int32)

The DirSyncRequestControl(Byte[], DirectorySynchronizationOptions, Int32) constructor creates an instance of the DirSyncRequestControl class using the specified parameters.

DirSyncRequestControl()

Source:
DirectoryControl.cs
Source:
DirectoryControl.cs
Source:
DirectoryControl.cs

The DirSyncRequestControl() constructor creates an instance of the DirSyncRequestControl class.

public:
 DirSyncRequestControl();
public DirSyncRequestControl ();
Public Sub New ()

Applies to

DirSyncRequestControl(Byte[])

Source:
DirectoryControl.cs
Source:
DirectoryControl.cs
Source:
DirectoryControl.cs

The DirSyncRequestControl(Byte[]) constructor creates an instance of the DirSyncRequestControl class using the specified parameter.

public:
 DirSyncRequestControl(cli::array <System::Byte> ^ cookie);
public DirSyncRequestControl (byte[] cookie);
new System.DirectoryServices.Protocols.DirSyncRequestControl : byte[] -> System.DirectoryServices.Protocols.DirSyncRequestControl
Public Sub New (cookie As Byte())

Parameters

cookie
Byte[]

An opaque structure used by the server. It is updated by the directory during each SearchRequest, which enables the control to incrementally read changes from the directory.

Applies to

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions)

Source:
DirectoryControl.cs
Source:
DirectoryControl.cs
Source:
DirectoryControl.cs

The DirSyncRequestControl(Byte[], DirectorySynchronizationOptions) constructor creates an instance of the DirSyncRequestControl class using the specified parameters.

public:
 DirSyncRequestControl(cli::array <System::Byte> ^ cookie, System::DirectoryServices::Protocols::DirectorySynchronizationOptions option);
public DirSyncRequestControl (byte[] cookie, System.DirectoryServices.Protocols.DirectorySynchronizationOptions option);
new System.DirectoryServices.Protocols.DirSyncRequestControl : byte[] * System.DirectoryServices.Protocols.DirectorySynchronizationOptions -> System.DirectoryServices.Protocols.DirSyncRequestControl
Public Sub New (cookie As Byte(), option As DirectorySynchronizationOptions)

Parameters

cookie
Byte[]

An opaque structure used by the server. It is updated by the directory during each SearchRequest, which enables the control to incrementally read changes from the directory.

option
DirectorySynchronizationOptions

Specifies the behavior of the search. This parameter can be zero or a combination of one or more of the values of DirectorySynchronizationOptions.

Applies to

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions, Int32)

Source:
DirectoryControl.cs
Source:
DirectoryControl.cs
Source:
DirectoryControl.cs

The DirSyncRequestControl(Byte[], DirectorySynchronizationOptions, Int32) constructor creates an instance of the DirSyncRequestControl class using the specified parameters.

public:
 DirSyncRequestControl(cli::array <System::Byte> ^ cookie, System::DirectoryServices::Protocols::DirectorySynchronizationOptions option, int attributeCount);
public DirSyncRequestControl (byte[] cookie, System.DirectoryServices.Protocols.DirectorySynchronizationOptions option, int attributeCount);
new System.DirectoryServices.Protocols.DirSyncRequestControl : byte[] * System.DirectoryServices.Protocols.DirectorySynchronizationOptions * int -> System.DirectoryServices.Protocols.DirSyncRequestControl
Public Sub New (cookie As Byte(), option As DirectorySynchronizationOptions, attributeCount As Integer)

Parameters

cookie
Byte[]

An opaque structure used by the server. It is updated by the directory during each SearchRequest, which enables the control to incrementally read changes from the directory.

option
DirectorySynchronizationOptions

Specifies the behavior of the search. This parameter can be zero or a combination of one or more of the values of DirectorySynchronizationOptions.

attributeCount
Int32

The maximum number of attributes to return. The default is 1048576.

Applies to