|
PhasorMeasurementMapperDeviceCommandHandler Method
|
Handles incoming commands from devices connected over the command channel. This is used by data-forwarding feature,
Namespace: PhasorProtocolAdaptersAssembly: PhasorProtocolAdapters (in PhasorProtocolAdapters.dll) Version: 2.4.207-beta
Syntax protected virtual void DeviceCommandHandler(
Guid clientID,
string connectionID,
byte[] commandBuffer,
int length
)
Protected Overridable Sub DeviceCommandHandler (
clientID As Guid,
connectionID As String,
commandBuffer As Byte(),
length As Integer
)
protected:
virtual void DeviceCommandHandler(
Guid clientID,
String^ connectionID,
array<unsigned char>^ commandBuffer,
int length
)
abstract DeviceCommandHandler :
clientID : Guid *
connectionID : string *
commandBuffer : byte[] *
length : int -> unit
override DeviceCommandHandler :
clientID : Guid *
connectionID : string *
commandBuffer : byte[] *
length : int -> unit
function DeviceCommandHandler(clientID, connectionID, commandBuffer, length);
View SourceParameters
- 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.
See Also