Choose the two lines of code which you should include in your code segment.
You work as the application developer at Domain.com.
You create a new service application named Certkiller App29.
You install Certkiller App29 on five application servers running in the Domain.com network.
You then apply the code segment shown below. Note that line numbers are only included for reference pruposes.
01 public void StartService(string serverName){
02 ServiceController crtl = new
03 ServiceController(” Certkiller App29″);
04 if (crtl.Status == ServiceControllerStatus.Stopped){
05 }
06 }
You want Certkiller App29 to start if it stops.
You must create the routine which will start Certkiller App29 on the server defined by the serverName input parameter.
Choose the two lines of code which you should include in your code segment.
Each correct answer presents only part of the complete solution. Choose two answers.