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

SendResponse() public method

Sends the specified response to the specified client only.
public SendResponse ( System.Guid client, ServiceResponse response ) : void
client System.Guid ID of the client to whom the is to be sent.
response ServiceResponse The to be sent to the .
return void
        public void SendResponse(Guid client, ServiceResponse response)
        {
            SendResponse(client, response, true);
        }

Same methods

ServiceHelper::SendResponse ( System.Guid client, ServiceResponse response, bool async ) : void
ServiceHelper::SendResponse ( ServiceResponse response ) : void
ServiceHelper