|
DataPublisherSendClientResponse(Guid, ServerResponse, ServerCommand, String, Object) Method
|
Sends response back to specified client with a formatted message.
Namespace: GSF.TimeSeries.TransportAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.248-beta
Syntaxprotected virtual bool SendClientResponse(
Guid clientID,
ServerResponse response,
ServerCommand command,
string formattedStatus,
params Object[] args
)
Protected Overridable Function SendClientResponse (
clientID As Guid,
response As ServerResponse,
command As ServerCommand,
formattedStatus As String,
ParamArray args As Object()
) As Boolean
protected:
virtual bool SendClientResponse(
Guid clientID,
ServerResponse response,
ServerCommand command,
String^ formattedStatus,
... array<Object^>^ args
)
abstract SendClientResponse :
clientID : Guid *
response : ServerResponse *
command : ServerCommand *
formattedStatus : string *
args : Object[] -> bool
override SendClientResponse :
clientID : Guid *
response : ServerResponse *
command : ServerCommand *
formattedStatus : string *
args : Object[] -> bool
function SendClientResponse(clientID, response, command, formattedStatus, ... args);
View SourceParameters
- clientID Guid
- ID of client to send response.
- response ServerResponse
- Server response.
- command ServerCommand
- In response to command.
- formattedStatus String
- Formatted status message to return.
- args Object
- Arguments for formattedStatus.
Return Value
Booleantrue if send was successful; otherwise
false.
See Also