Exemplo n.º 1
0
        public static void CreateTimerJob(SPSite site)
        {
            var timerJob = new ObslugaWiadomosciTJ(site);
            timerJob.Schedule = new SPMinuteSchedule
            {
                BeginSecond = 0,
                EndSecond = 0,
                Interval = 60
            };

            timerJob.Update();
        }
Exemplo n.º 2
0
        public static void CreateTimerJob(SPSite site)
        {
            var timerJob = new ObslugaWiadomosciTJ(site);

            timerJob.Schedule = new SPMinuteSchedule
            {
                BeginSecond = 0,
                EndSecond   = 0,
                Interval    = 60
            };

            timerJob.Update();
        }