GSF.ServiceProcess.ServiceHelper.SendServiceStateChangedResponse C# (CSharp) Method

SendServiceStateChangedResponse() private method

private SendServiceStateChangedResponse ( ServiceState currentState ) : void
currentState ServiceState
return void
        private void SendServiceStateChangedResponse(ServiceState currentState)
        {
            ServiceResponse response = new ServiceResponse("SERVICESTATECHANGED");
            response.Attachments.Add(new ObjectState<ServiceState>(Name, currentState));
            SendResponse(response);
        }
ServiceHelper