質問

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