i use quartz.net in asp.net mvc for executes some scheduled jobs every 1 minute, normally you can send some parameters to your job in this code i send two string parameter as key/value to my job
IJobDetail SendMatchQuestionJob = JobBuilder.Create<QuestionJob>()
.UsingJobData("param1", "value1")
.UsingJobData("param2", "value2")
.Build();
i want to send an array of strings to scheduled job instead of simple string value,have you any idead? or sample?
thank you in advanced.