| 
            
              ConcentratorDeviceCommandHandler Method
             | 
          
        
        
            Handles incoming commands from devices connected over the command channel.
            
        
        Namespace: PhasorProtocolAdapters.IeeeC37_118Assembly: PhasorProtocolAdapters (in PhasorProtocolAdapters.dll) Version: 2.4.258-beta
Syntaxprotected override void DeviceCommandHandler(
	Guid clientID,
	string connectionID,
	byte[] commandBuffer,
	int length
)
Protected Overrides 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
) override
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