Changing the time period of a WDF timer

Is it possible to change the period of a periodic WDF timer after the timer was created? If affirmative, what is the procedure to change it?

It is not possible. The timer period is set during the WdfTimerCreate call.
At this time, the only option you have is to stop the timer, delete it and re-create a new timer object with new setting.

Egi.

I thought this might be the case…
Thank you for the confirmation.

Stefan