同步SQL和Active Directory.c#应用程序notimplemtedexception

本文关键字:应用程序 notimplemtedexception Directory Active SQL 同步 | 更新日期: 2023-09-27 18:19:20

我的应用程序在EventLog中有一个异常:

Application: Synchronizator_AD.exe Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.NotImplementedException Stack:    at
Synchronizator_AD.Application.Database(Synchronizator_AD.Databases,
System.String, System.String, System.String)    at
Synchronizator_AD.Application.Start(System.String)    at
Synchronizator_AD.Synchronizator_AD.TimerTick(System.Object)    at
System.Threading._TimerCallback.TimerCallback_Context(System.Object)  at
System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext,
System.Threading.ContextCallback, System.Object, Boolean)    at
System.Threading._TimerCallback.PerformTimerCallback(System.Object)
谁能告诉我我做错了什么?如果你能帮助我(VS2010)

我正在编写一个应用程序,该应用程序将在活动目录中使用SQL表记录的名称创建用户帐户。这个应用程序是一个windows服务。

同步SQL和Active Directory.c#应用程序notimplemtedexception

我假设您编写了Synchronizator_AD应用程序。System.NotImplementedException通常表示您使用了某种自动代码生成(可能来自Visual Studio中的某个模板),它为您生成了应用程序框架代码。这些工具经常将throw new System.NotImplementedException()调用插入到生成的方法中,因为你是必须实现这些方法的人。

所以你做错的基本上是:你没有实现一些你需要的方法。查找throw new System.NotImplementedException()的所有实例并实现这些方法。