我正在活动目录中进行长搜索,并且非常希望用户使用DirectorySearcher.Asynchronous = True. Microsoft在
MSDN上提供的文档非常少
An asynchronous search can show results as they are found while
simultaneously searching for additional results. This is useful for
tasks such as populating list Boxes.The default setting for this property is false.
我的应用程序如何知道搜索何时完成.我没有看到任何提供此通知的属性,事件或回调.有没有人有任何想法如何获得此功能?
基本上我在找这个:
>启动异步目录搜索
>将结果返回到System.Collections.Concurrent.ConcurrentQueue(Of Object)
>当DirectorySearcher正在运行时,我可以处理添加到队列中的项目
非常感谢你的帮助.
DirectoryServices使用ADSI与AD通信.将async设置为true时,它会使用IDirectorySearch.SetSearchPreferences将ADS_SEARCHPREF_ASYNCHRONOUS搜索首选项设置为true.
原文链接:https://www.f2er.com/vb/255429.html这是一个解释同步和异步搜索之间差异的页面.
http://msdn.microsoft.com/en-us/library/windows/desktop/aa746498(v=vs.85).aspx
这描述了分页.
http://msdn.microsoft.com/en-us/library/windows/desktop/aa746414(v=vs.85).aspx