VlvRequestControl 构造函数

定义

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

重载

VlvRequestControl()

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

VlvRequestControl(Int32, Int32, Byte[])

VlvRequestControl(Int32, Int32, Byte[]) 构造函数使用指定的项计数和目标项创建 VlvRequestControl 类的实例。

VlvRequestControl(Int32, Int32, Int32)

VlvRequestControl(Int32, Int32, Int32) 构造函数使用指定的项计数和偏移量创建 VlvRequestControl 类的实例。

VlvRequestControl(Int32, Int32, String)

VlvRequestControl(Int32, Int32, String) 构造函数使用指定的项计数和目标项创建 VlvRequestControl 类的实例。

VlvRequestControl()

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

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

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

适用于

VlvRequestControl(Int32, Int32, Byte[])

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

VlvRequestControl(Int32, Int32, Byte[]) 构造函数使用指定的项计数和目标项创建 VlvRequestControl 类的实例。

public:
 VlvRequestControl(int beforeCount, int afterCount, cli::array <System::Byte> ^ target);
public VlvRequestControl (int beforeCount, int afterCount, byte[] target);
new System.DirectoryServices.Protocols.VlvRequestControl : int * int * byte[] -> System.DirectoryServices.Protocols.VlvRequestControl
Public Sub New (beforeCount As Integer, afterCount As Integer, target As Byte())

参数

beforeCount
Int32

在列表结果中,客户端请求从服务器返回的目标项之前的项数。

afterCount
Int32

在结果中,客户端请求从服务器返回的目标项之前的项数。

target
Byte[]

搜索的目标项。

适用于

VlvRequestControl(Int32, Int32, Int32)

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

VlvRequestControl(Int32, Int32, Int32) 构造函数使用指定的项计数和偏移量创建 VlvRequestControl 类的实例。

public:
 VlvRequestControl(int beforeCount, int afterCount, int offset);
public VlvRequestControl (int beforeCount, int afterCount, int offset);
new System.DirectoryServices.Protocols.VlvRequestControl : int * int * int -> System.DirectoryServices.Protocols.VlvRequestControl
Public Sub New (beforeCount As Integer, afterCount As Integer, offset As Integer)

参数

beforeCount
Int32

在列表结果中,客户端请求从服务器发送回的目标项之前的项数。

afterCount
Int32

在结果中,客户端请求从服务器发送回的目标项之前的项数。

offset
Int32

偏移量值与内容计数之间的比值。

适用于

VlvRequestControl(Int32, Int32, String)

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

VlvRequestControl(Int32, Int32, String) 构造函数使用指定的项计数和目标项创建 VlvRequestControl 类的实例。

public:
 VlvRequestControl(int beforeCount, int afterCount, System::String ^ target);
public VlvRequestControl (int beforeCount, int afterCount, string target);
new System.DirectoryServices.Protocols.VlvRequestControl : int * int * string -> System.DirectoryServices.Protocols.VlvRequestControl
Public Sub New (beforeCount As Integer, afterCount As Integer, target As String)

参数

beforeCount
Int32

在列表结果中,客户端请求从服务器返回的目标项之前的项数。

afterCount
Int32

在结果中,客户端请求从服务器返回的目标项之前的项数。

target
String

搜索的目标项。

适用于