DirectorySearcher.Asynchronous Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un valore che indica se la ricerca viene eseguita in modo asincrono.
public:
property bool Asynchronous { bool get(); void set(bool value); };
public bool Asynchronous { get; set; }
[System.DirectoryServices.DSDescription("DSAsynchronous")]
[System.Runtime.InteropServices.ComVisible(false)]
public bool Asynchronous { get; set; }
member this.Asynchronous : bool with get, set
[<System.DirectoryServices.DSDescription("DSAsynchronous")>]
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.Asynchronous : bool with get, set
Public Property Asynchronous As Boolean
Valore della proprietà
true
se la ricerca è asincrona; in caso contrario, false
.
- Attributi
Esempio
L'esempio C# seguente illustra come creare una ricerca asincrona.
using System.DirectoryServices;
...
// Bind to the users container.
DirectoryEntry entry = new DirectoryEntry("LDAP://CN=users,DC=fabrikam,DC=com");
// Create a DirectorySearcher object.
DirectorySearcher src = new DirectorySearcher(entry);
//Set the Asynchronous property to true.
src.Asynchronous = true;
//Use the FindAll method to get search results.
SearchResultCollection res = src.FindAll();
Commenti
Una ricerca asincrona può visualizzare i risultati man mano che vengono trovati durante la ricerca simultanea di risultati aggiuntivi. Ciò è utile per le attività, ad esempio il popolamento delle caselle di riepilogo.
L'impostazione predefinita di questa proprietà è false
.