在 Quartz.NET 中获取触发器属性
我需要能够获取 C# 中触发器的属性(即 cron 表达式或简单触发器类型(每日、每小时等)及其参数),并显示它们并允许修改它们。我现在有这个:
Trigger[] trigger = sched.GetTriggersOfJob(id, groupid);
但我找不到任何方法来让我访问这些信息。有什么想法吗?
I need to be able to get the properties (i.e. cron expression or type of simple trigger (daily, hourly, etc) and it's parameters) of a trigger in C#, and display them and also let them be modified. I have this right now:
Trigger[] trigger = sched.GetTriggersOfJob(id, groupid);
But I can't find any methods to let me access this information. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
效率很重要,您也可以在一个循环中完成此操作:
How about
If efficiency is important, you can also do this in one loop: