Hi All, How do i programatically pass in arguments to OnStart method of a Service, which I further need to propagate to the Elapsed event of the Timer inside the service.
- Amit
|
|
Hi All, How do i programatically pass in arguments to OnStart method of a Service, which I further need to propagate to the Elapsed event of the Timer inside the service.
|
||
|
|
|
At the simplest level: when you call
Then read
You can also use the service args, but that is from the external caller (service registration) - not programatically (per the question). |
||
|
|
|
|
You could consider having the OnStart method read the arguments from a configuration file and programatically update that, using either a separate application. |
||
|
|