You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
446 B
C#

using DSWeb.Common.Helper;
using log4net;
using Quartz;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Web;
namespace DSWeb.Job.Common
{
public class RefreshTokenJob : IJob
{
private ILog logger = LogManager.GetLogger("RefreshTokenJob");
public void Execute(IJobExecutionContext context)
{
TokenHelper.RefreshTokens();
}
}
}