DirectoryVirtualListView Constructors
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.
Overloads
DirectoryVirtualListView() |
Initializes a new instance of the DirectoryVirtualListView class. |
DirectoryVirtualListView(Int32) |
Initializes a new instance of the DirectoryVirtualListView class with the after count set. |
DirectoryVirtualListView(Int32, Int32, Int32) |
Initializes a new instance of the DirectoryVirtualListView class with the before count, after count, and offset set. |
DirectoryVirtualListView(Int32, Int32, String) |
Initializes a new instance of the DirectoryVirtualListView class with the before count, after count, and target set. |
DirectoryVirtualListView(Int32, Int32, Int32, DirectoryVirtualListViewContext) |
Initializes a new instance of the DirectoryVirtualListView class with the before count, after count, offset and context set. |
DirectoryVirtualListView(Int32, Int32, String, DirectoryVirtualListViewContext) |
Initializes a new instance of the DirectoryVirtualListView class with the before count, after count, target and context set. |
DirectoryVirtualListView()
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
Initializes a new instance of the DirectoryVirtualListView class.
public:
DirectoryVirtualListView();
public DirectoryVirtualListView ();
Public Sub New ()
Applies to
DirectoryVirtualListView(Int32)
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
Initializes a new instance of the DirectoryVirtualListView class with the after count set.
public:
DirectoryVirtualListView(int afterCount);
public DirectoryVirtualListView (int afterCount);
new System.DirectoryServices.DirectoryVirtualListView : int -> System.DirectoryServices.DirectoryVirtualListView
Public Sub New (afterCount As Integer)
Parameters
- afterCount
- Int32
The number of entries after the target entry that the client is requesting from the server.
Applies to
DirectoryVirtualListView(Int32, Int32, Int32)
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
Initializes a new instance of the DirectoryVirtualListView class with the before count, after count, and offset set.
public:
DirectoryVirtualListView(int beforeCount, int afterCount, int offset);
public DirectoryVirtualListView (int beforeCount, int afterCount, int offset);
new System.DirectoryServices.DirectoryVirtualListView : int * int * int -> System.DirectoryServices.DirectoryVirtualListView
Public Sub New (beforeCount As Integer, afterCount As Integer, offset As Integer)
Parameters
- beforeCount
- Int32
The number of entries before the target entry that the client is requesting from the server.
- afterCount
- Int32
The number of entries after the target entry that the client is requesting from the server.
- offset
- Int32
The estimated target entry's requested offset within the list.
Applies to
DirectoryVirtualListView(Int32, Int32, String)
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
Initializes a new instance of the DirectoryVirtualListView class with the before count, after count, and target set.
public:
DirectoryVirtualListView(int beforeCount, int afterCount, System::String ^ target);
public DirectoryVirtualListView (int beforeCount, int afterCount, string? target);
public DirectoryVirtualListView (int beforeCount, int afterCount, string target);
new System.DirectoryServices.DirectoryVirtualListView : int * int * string -> System.DirectoryServices.DirectoryVirtualListView
Public Sub New (beforeCount As Integer, afterCount As Integer, target As String)
Parameters
- beforeCount
- Int32
The number of entries before the target entry that the client is requesting from the server.
- afterCount
- Int32
The number of entries after the target entry that the client is requesting from the server.
- target
- String
The desired target entry requested by the client.
Applies to
DirectoryVirtualListView(Int32, Int32, Int32, DirectoryVirtualListViewContext)
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
Initializes a new instance of the DirectoryVirtualListView class with the before count, after count, offset and context set.
public:
DirectoryVirtualListView(int beforeCount, int afterCount, int offset, System::DirectoryServices::DirectoryVirtualListViewContext ^ context);
public DirectoryVirtualListView (int beforeCount, int afterCount, int offset, System.DirectoryServices.DirectoryVirtualListViewContext? context);
public DirectoryVirtualListView (int beforeCount, int afterCount, int offset, System.DirectoryServices.DirectoryVirtualListViewContext context);
new System.DirectoryServices.DirectoryVirtualListView : int * int * int * System.DirectoryServices.DirectoryVirtualListViewContext -> System.DirectoryServices.DirectoryVirtualListView
Public Sub New (beforeCount As Integer, afterCount As Integer, offset As Integer, context As DirectoryVirtualListViewContext)
Parameters
- beforeCount
- Int32
The number of entries before the target entry that the client is requesting from the server.
- afterCount
- Int32
The number of entries after the target entry that the client is requesting from the server.
- offset
- Int32
The estimated target entry's requested offset within the list.
- context
- DirectoryVirtualListViewContext
The virtual list view search response.
Applies to
DirectoryVirtualListView(Int32, Int32, String, DirectoryVirtualListViewContext)
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
- Source:
- DirectoryVirtualListView.cs
Initializes a new instance of the DirectoryVirtualListView class with the before count, after count, target and context set.
public:
DirectoryVirtualListView(int beforeCount, int afterCount, System::String ^ target, System::DirectoryServices::DirectoryVirtualListViewContext ^ context);
public DirectoryVirtualListView (int beforeCount, int afterCount, string? target, System.DirectoryServices.DirectoryVirtualListViewContext? context);
public DirectoryVirtualListView (int beforeCount, int afterCount, string target, System.DirectoryServices.DirectoryVirtualListViewContext context);
new System.DirectoryServices.DirectoryVirtualListView : int * int * string * System.DirectoryServices.DirectoryVirtualListViewContext -> System.DirectoryServices.DirectoryVirtualListView
Public Sub New (beforeCount As Integer, afterCount As Integer, target As String, context As DirectoryVirtualListViewContext)
Parameters
- beforeCount
- Int32
The number of entries before the target entry that the client is requesting from the server.
- afterCount
- Int32
The number of entries after the target entry that the client is requesting from the server.
- target
- String
The desired target entry requested by the client.
- context
- DirectoryVirtualListViewContext
The virtual list view search response.