Multiple choice technology architecture

What properties would you set to True for a service that can restart after being paused and which writes information to the Application log?

  1. CanShutDown

  2. CanPauseAndContinue

  3. AutoLog

  4. CanStop

Reveal answer Fill a bubble to check yourself
B,C Correct answer
Explanation

For a service that can pause and resume, set CanPauseAndContinue to true. To automatically log service events to the Application event log, set AutoLog to true. CanStop and CanShutdown are separate properties for different service capabilities. The question asks specifically about pause/resume functionality and logging.