为什么我的windows服务卡住了

本文关键字:服务卡 windows 我的 为什么 | 更新日期: 2023-09-27 18:04:36

我创建了一个windows服务,它在执行这部分代码时卡住了

  Kernel.Bind(x => x.From(assembly)
                           .SelectAllClasses().InheritedFrom(typeof(CciConstraint))
                           .BindToSelf()
                           .Configure(b => b.InScope(context => context.Parameters.First().GetValue(context, context.Request.Target))));

其中cciconconstraint是一个抽象类

为什么我的windows服务卡住了

可能是由于异常。当任何未处理的错误或异常发生时,服务将停止或卡住。

检查你的错误处理代码