hi..
hi have a windows service which starts async web services with a timer,
i would like the method calls to stop if i stop the service
is that possible?
Josh Twist - 10 Jan 2006 14:45 GMT
To stop a timer firing callbacks you just need to dispose of the timer.
i.e.
timer.Dispose();
Let me know if that is what you were looking for...
Josh
http://www.thejoyofcode.com/