GSF.ServiceProcess.ServiceHelper.SendServiceStateChangedResponse C# (CSharp) 메소드

SendServiceStateChangedResponse() 개인적인 메소드

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