How can I tell if a method I am writing in managed code is being call from an interactive app vs a windows service?
|
|
What part of a Windows Service is it that you want to know about? Or what part of an interactive app do you not want to know about? What actually matters to you? Any time I hear a request like this, it is almost always a mistake in design. I would suggest a few answers:
It is almost always a mistake for code to be sensitive to the context it was called in. |
||||
|
|
|
There are at least 2 ways to do this:
|
||
|
|
|
You can define two different logger: one for interactive apps and one for windows service. and let client choose which logger he wants to use using a config file. You can also have a default logger if clients chooses a wrong logger or forgets to configure. I think it should be a better idea to have functionality like logging and formatting message to be configurable. |
||
|
|
|
|
I think I may have figured this out (at least this works for my needs--your mileage may vary depending on what you are trying to do). There's a property hanging off of the Environment object called "UserInteractive". It tells you whether or not you are running in a context with access to the desktop. |
||
|
|
|
|
Don't know if there is a builtin possibility, but have a look at the If you don't mind using PInvoke, you can get the parent process of the current process. If it is running under the account NT AUTHORITY\SYSTEM and it's name is service.exe, the current process is (most probably) a service. |
||
|
|
