My requirement is to have multiple jobs and I have to loop through the JobName's of all jobs to check whether it exists currently.
<configuration>
<Job>
<appSettings>
<add key="JobName" value="BigDataUpload" />
</appSettings>
</Job>
<Job>
<appSettings>
<add key="JobName" value="QueryUpload" />
</appSettings>
</Job>
</configuration>
I am not sure whether this facility is present in C#. Currently I have one AppSettings inside Configuration and I access it using ConfigurationManager.AppSettings.Get("JobName").
Any help is appreciated !!