gpt4 book ai didi

c# - DirectorySearcher 异步使用 await

转载 作者:行者123 更新时间:2023-12-05 05:06:36 24 4
gpt4 key购买 nike

我正在使用 .net 4.7.2(非核心)和 C#。

我需要想出一种方法来不阻止我当前的异步任务,并且我需要在这些任务中搜索用户。我以前做过 DirectorySearcher 操作,所以我知道 AD 的附件和第一次搜索可能需要几秒钟,如果我尝试从我现有的异步方法调用它,这真的会造成麻烦。

我发现 DirectorySearcher 有一个“异步”属性。但我不认为它执行异步模式。

        DirectorySearcher ds = new DirectorySearcher();
ds.Asynchronous = true;
ds.Filter = "(&(objectclass=user)(samaccountname=testaccount)";
ds.PropertiesToLoad.Add("samaccountname");
SearchResult sr = await ds.FindOne();

当然,最后一行会抛出错误,因为 FindOne 不是异步方法。我已经知道如果我删除 await 它将编译。但这并不能解决我从现有的等待方法中调用它的问题。我需要找到一种在 AD 中进行异步搜索的方法...

有谁知道我如何让它在 .net 框架(非核心)中工作?

最佳答案

尝试在线程池上运行它。

private async void MyAsyncMethod()
{
// do some asynchronous thing
// await something

// then, run below on thread pool, which would not block MyAsyncMethod
Task.Run(() =>
{
DirectorySearcher ds = new DirectorySearcher();
ds.Asynchronous = true;
ds.Filter = "(&(objectclass=user)(samaccountname=testaccount)";
ds.PropertiesToLoad.Add("samaccountnamt");
SearchResult sr = ds.FindOne();
});
}

供引用: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task.run

关于c# - DirectorySearcher 异步使用 await,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59760951/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com