DirSyncRequestControl 构造函数

定义

DirSyncRequestControl() 构造函数创建 DirSyncRequestControl 类的实例。

重载

DirSyncRequestControl()

DirSyncRequestControl() 构造函数创建 DirSyncRequestControl 类的实例。

DirSyncRequestControl(Byte[])

DirSyncRequestControl(Byte[]) 构造函数使用指定的参数创建 DirSyncRequestControl 类的实例。

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions)

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions) 构造函数使用指定的参数创建 DirSyncRequestControl 类的实例。

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions, Int32)

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions, Int32) 构造函数使用指定的参数创建 DirSyncRequestControl 类的实例。

DirSyncRequestControl()

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

DirSyncRequestControl() 构造函数创建 DirSyncRequestControl 类的实例。

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

适用于

DirSyncRequestControl(Byte[])

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

DirSyncRequestControl(Byte[]) 构造函数使用指定的参数创建 DirSyncRequestControl 类的实例。

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())

参数

cookie
Byte[]

服务器使用的一种不透明结构。 在每一个 SearchRequest 过程中,目录都会更新该结构,使得控件可以增量方式从目录中读取更改。

适用于

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions)

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

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions) 构造函数使用指定的参数创建 DirSyncRequestControl 类的实例。

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)

参数

cookie
Byte[]

服务器使用的一种不透明结构。 在每一个 SearchRequest 过程中,目录都会更新该结构,使得控件可以增量方式从目录中读取更改。

option
DirectorySynchronizationOptions

指定搜索的行为。 此参数可以是零,也可以是一或多个 DirectorySynchronizationOptions 值的组合。

适用于

DirSyncRequestControl(Byte[], DirectorySynchronizationOptions, Int32)

Source:
DirectoryControl.cs
Source:
DirectoryControl.cs
Source:
DirectoryControl.cs
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)

参数

cookie
Byte[]

服务器使用的一种不透明结构。 在每一个 SearchRequest 过程中,目录都会更新该结构,使得控件可以增量方式从目录中读取更改。

option
DirectorySynchronizationOptions

指定搜索的行为。 此参数可以是零,也可以是一或多个 DirectorySynchronizationOptions 值的组合。

attributeCount
Int32

要返回的特性的最大数目。 默认值为 1048576。

适用于