Hi @عبدالمجيد العتيبي , Welcome to Microsoft Q&A,
Ensure that only one instance of the SMS-sending task is running at a time. You can achieve this by:
- Using a locking mechanism.
- Checking a flag to prevent overlapping executions.
private static bool isTaskRunning = false;
private void TimerElapsed(object sender, ElapsedEventArgs e)
{
if (isTaskRunning) return;
isTaskRunning = true;
try
{
SendSmsMessages();
}
finally
{
isTaskRunning = false;
}
}
Best Regards,
Jiale
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.