|
ServiceHelperOnSendingClientResponse Method
|
Namespace: GSF.ServiceProcessAssembly: GSF.ServiceProcess (in GSF.ServiceProcess.dll) Version: 2.4.248-beta
Syntaxprotected virtual bool OnSendingClientResponse(
Guid client,
ServiceResponse response
)
Protected Overridable Function OnSendingClientResponse (
client As Guid,
response As ServiceResponse
) As Boolean
protected:
virtual bool OnSendingClientResponse(
Guid client,
ServiceResponse^ response
)
abstract OnSendingClientResponse :
client : Guid *
response : ServiceResponse -> bool
override OnSendingClientResponse :
client : Guid *
response : ServiceResponse -> bool
function OnSendingClientResponse(client, response);
View SourceParameters
- client Guid
- ID of the client to whom the response is to be sent.
- response ServiceResponse
- The ServiceResponse to be sent to the client.
Return Value
Booleantrue if send was successful; otherwise,
false, i.e., send was cancelled.
See Also