DirSyncRequestControl 错误消息

发布于 2025-01-01 06:56:28 字数 582 浏览 0 评论 0原文

实现代码(c#)来轮询 Active Directory 的更改,但是该行抛出这些错误,不太确定出了什么问题,感谢您的任何想法。

1)“DirectorySynchronizationOptions”是“System.DirectoryServices.DirectorySynchronizationOptions”和“System.DirectoryServices.Protocols.DirectorySynchronizationOptions”之间的不明确引用

2)参数2:无法从“System.DirectoryServices.DirectorySynchronizationOptions”转换为“System.DirectoryServices.Protocols”。 DirectorySynchronizationOptions

也说有无效的论点

   DirSyncRequestControl dirSyncRC = new DirSyncRequestControl(cookie, DirectorySynchronizationOptions.IncrementalValues, Int32.MaxValue);

Implementing code (c#) to poll Active Directory for changes, however the line is throwing these errors, not quite sure what is wrong, thanks for any ideas.

1)"DirectorySynchronizationOptions' is an ambiguous reference between 'System.DirectoryServices.DirectorySynchronizationOptions' and 'System.DirectoryServices.Protocols.DirectorySynchronizationOptions"

2)Argument 2: cannot convert from 'System.DirectoryServices.DirectorySynchronizationOptions' to 'System.DirectoryServices.Protocols.DirectorySynchronizationOptions'

also saying that there are invalid arguments

   DirSyncRequestControl dirSyncRC = new DirSyncRequestControl(cookie, DirectorySynchronizationOptions.IncrementalValues, Int32.MaxValue);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风轻花落早 2025-01-08 06:56:28

你可以尝试一下:

DirSyncRequestControl dirSyncRC = new DirSyncRequestControl(cookie,  System.DirectoryServices.Protocols.DirectorySynchronizationOptions.IncrementalValues, Int32.MaxValue); 

你可以用using以另一种方式解决它

You can just try :

DirSyncRequestControl dirSyncRC = new DirSyncRequestControl(cookie,  System.DirectoryServices.Protocols.DirectorySynchronizationOptions.IncrementalValues, Int32.MaxValue); 

You can solve it in another way playing with using

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文