Question:
You create a service application that monitors free space on a hard disk drive.
You need to ensure that the service application runs in the background and monitors the free space every minute.
What should you do? (Each correct answer presents part of the solution. Choose three.)
A Add an instance of the System.Timers.Timer class to the Service class and configure it to fire every minute.
B Add code to the OnStart() method of the Service class to monitor the free space on the hard disk drive.
C Add code to the OnStart() method of the Service class to start the timer. "A Composite Solution With Just One Click" - Certification Guaranteed 207 Microsoft 70-536 Exam
D Add code to the Tick event handler of the timer to monitor the free space on the hard disk drive.
E Add an instance of the System.Windows.Forms.Timer class to the Service class and configure it to fire every minute
F Add code to the default constructor of the Service class to monitor the free space on the hard disk drive.
G Add code to the Elapsed event handler of the timer to monitor the free space on the hard disk drive.
+ AnswerE F G
+ Report