문제

I would like to start a timer when the application is started in IIS.

Do you think that the best place is in Application_Start in Global.asax?

Thank you very much.

도움이 되었습니까?

해결책

it is a good place because in that way you can absolutely capture the moment the application pool is started, but this does not mean it has to exist there and not in a Singleton class, for example, which gets initialized from the Application_Start.

it really depends on where you will need to use that timer from later on.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top