Click or drag to resize
Grid Solutions Framework

PhasorDataConcentratorBaseDeviceCommandHandler Method

Handles incoming commands from devices connected over the command channel.

Namespace: PhasorProtocolAdapters
Assembly: PhasorProtocolAdapters (in PhasorProtocolAdapters.dll) Version: 2.4.182-beta
Syntax
protected virtual void DeviceCommandHandler(
	Guid clientID,
	string connectionID,
	byte[] commandBuffer,
	int length
)
View Source

Parameters

clientID  Guid
Guid of client that sent the command.
connectionID  String
Remote client connection identification (i.e., IP:Port).
commandBuffer  Byte
Data buffer received from connected client device.
length  Int32
Valid length of data within the buffer.
Remarks
This method should be overridden by derived classes in order to handle incoming commands, specifically handling requests for configuration frames.
See Also