Aracılığıyla paylaş


DirectorySearcher.Asynchronous Özellik

Tanım

Aramanın zaman uyumsuz olarak gerçekleştirilip gerçekleştirilmediğini belirten bir değer alır veya ayarlar.

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

Özellik Değeri

true arama zaman uyumsuzsa; false Aksi takdir -de.

Öznitelikler

Örnekler

Aşağıdaki C# örneği, zaman uyumsuz aramanın nasıl oluşturulacağını gösterir.

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

Açıklamalar

Zaman uyumsuz arama, aynı anda ek sonuçlar ararken bulunan sonuçları gösterebilir. Bu, liste kutularını doldurma gibi görevler için kullanışlıdır.

Bu özelliğin varsayılan ayarı şeklindedir false.

Şunlara uygulanır