有谁知道有关在 Telligent 5.5 下创建自定义计划任务的任何资源?
根据我的阅读,我需要做的就是以下几点:
1.创建实现ITask2接口的类型
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Telligent.Tasks;
namespace Project.ScheduledTasks
{
public class ReminderTask:ITask2
{
public void Execute()
{
string task = "Please hit the breakpoint here";
}
public void Load(System.Xml.XmlNode node)
{
throw new NotImplementedException();
}
}
}
2.communityserver.config中添加任务描述
<Thread minutes="1">
<task name="ReminderTask" type="Project.ScheduledTasks.ReminderTask, Project.ScheduledTasks" enabled="true" enableShutDown="false"></task>
</Thread>
我还需要做什么吗?
请帮忙 :)。