|
DataSubscriberOnReceivedUserCommandResponse Method
|
Namespace: GSF.TimeSeries.TransportAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.246-beta
Syntaxprotected void OnReceivedUserCommandResponse(
ServerCommand command,
ServerResponse response,
byte[] buffer,
int startIndex,
int length
)
Protected Sub OnReceivedUserCommandResponse (
command As ServerCommand,
response As ServerResponse,
buffer As Byte(),
startIndex As Integer,
length As Integer
)
protected:
void OnReceivedUserCommandResponse(
ServerCommand command,
ServerResponse response,
array<unsigned char>^ buffer,
int startIndex,
int length
)
member OnReceivedUserCommandResponse :
command : ServerCommand *
response : ServerResponse *
buffer : byte[] *
startIndex : int *
length : int -> unit
function OnReceivedUserCommandResponse(command, response, buffer, startIndex, length);
View SourceParameters
- command ServerCommand
- The code for the user command.
- response ServerResponse
- The code for the server's response.
- buffer Byte
- Buffer containing the message from the server.
- startIndex Int32
- Index into the buffer used to skip the header.
- length Int32
- The length of the message in the buffer, including the header.
See Also