我开始在quartz.net 2.0.1 上实施第一个样本,但它给出了一个错误。
我创建了一个名为 QuartzSample 的 asp.net Web 应用程序
我的简单代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Quartz;
namespace QuartzSample
{
public class Quartz : IJob
{
public void Execute(JobExecutionContext context)
{
SendMail();
}
private void SendMail()
{
// ...
}
}
}
错误 :
The type or namespace name 'JobExecutionContext' could not be found (are you missing a using directive or an assembly reference?)