|   | ServiceHelperSendResponse(Guid, ServiceResponse, Boolean) Method | 
        
        
            Sends the specified response to the specified client only.
            
        
        Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic void SendResponse(
	Guid client,
	ServiceResponse response,
	bool async
)
Public Sub SendResponse ( 
	client As Guid,
	response As ServiceResponse,
	async As Boolean
)
public:
void SendResponse(
	Guid client, 
	ServiceResponse^ response, 
	bool async
)
member SendResponse : 
        client : Guid * 
        response : ServiceResponse * 
        async : bool -> unit function SendResponse(client, response, async);
Parameters
- client  Guid
- ID of the client to whom the response is to be sent.
- response  ServiceResponse
- The ServiceResponse to be sent to the client.
- async  Boolean
- Flag to determine whether to wait for the send operations to complete.
 See Also
See Also