如何通过c#安排自定义任务

时间:2013-04-13 13:57:11

标签: c# scheduled-tasks

我正在使用Task Scheduler在c#应用程序中安排我的任务。我想我对这个库有了基本的了解。

但现在我陷入了一个我想要创建自定义操作的地方,该操作将按照设定的时间表执行。就像built-in action EmailAction 一样(将根据设定的时间表发送邮件) ), ShowMessageAction (将在设置的时间表上显示警告消息),我想创建一个将运行我的c#代码的操作,该代码将一些数据保存到我的数据库。

我尝试的是:我创建了一个继承 Action CustomAction 类,如:

public class NewAction : Microsoft.Win32.TaskScheduler.Action
{
    public override string Id
    {
        get
        {
            return base.Id;
        }
        set
        {
            base.Id = value;
        }
    }

    public NewAction()
    {
    }
}

这是我的任务调度程序代码:

    ..  
    ... 
    // Get the service on the local machine
    using (TaskService ts = new TaskService())
    {
        // Create a new task definition and assign properties
        TaskDefinition td = ts.NewTask();
        td.RegistrationInfo.Description = "Does something";

        // Create a trigger that will fire the task at this time every other day
        TimeTrigger tt = new TimeTrigger();

        tt.StartBoundary = DateTime.Today + TimeSpan.FromHours(19) + TimeSpan.FromMinutes(1);
        tt.EndBoundary = DateTime.Today + TimeSpan.FromHours(19) + TimeSpan.FromMinutes(3);
        tt.Repetition.Interval = TimeSpan.FromMinutes(1);

        td.Triggers.Add(tt);

        // Create an action that will launch Notepad whenever the trigger fires
        td.Actions.Add(new NewAction());   <==========================

        // Register the task in the root folder
        ts.RootFolder.RegisterTaskDefinition(@"Test", td);

        // Remove the task we just created
        //ts.RootFolder.DeleteTask("Test");
    }
    ...
    ....

在线上(箭头指向)我得到例外:

  

值不在预期范围内的任务调度程序

我不确定我想要实现的目标是否可行,如果有可能请指导我正确的方向?

1 个答案:

答案 0 :(得分:1)

根据我对你的问题的理解。我实现了相同的东西,但我使用了“Quartz”Scheduler而不是“Task Scheduler”。它很容易实现。也许你也可以试试这个。

参考: http://quartznet.sourceforge.net/tutorial/

如果我错了,请纠正我。