Share via


IRemoteToolCommand (Compact 2013)

3/26/2014

This interface represents a command packet, which you can use to store data to send to a target device, or to access data sent from the device.

Method

Description

IRemoteToolCommand::GetAvailableDataSize

Retrieves the amount of bytes left in the command packet.

IRemoteToolCommand::GetBYTES

Gets a BYTE array value from the command packet.

IRemoteToolCommand::GetDWORD

Gets a DWORD value from the command packet.

IRemoteToolCommand::GetNextType

Gets the type of the next data element in the command packet.

IRemoteToolCommand::GetString

Gets a string value from the command packet.

IRemoteToolCommand::GetWORD

Gets a WORD value from the command packet.

IRemoteToolCommand::ModifyBYTES

Modifies a BYTE array value in a random-access command packet.

IRemoteToolCommand::ModifyDWORD

Modifies a DWORD value in a random-access command packet.

IRemoteToolCommand::ModifyString

Modifies a string value in a random-access command packet.

IRemoteToolCommand::ModifyWORD

Modifies a WORD value in a random-access command packet.

IRemoteToolCommand::Reset

Resets the content of the command packet to its initial state.

IRemoteToolCommand::SetAllocatedSize

This method is obsolete. Do not call this method.

IRemoteToolCommand::SetBYTES

Adds a BYTE array value to a command packet.

IRemoteToolCommand::SetBYTESModifiable

Adds a BYTE array value to a command packet and makes it randomly accessible so that you can later modify the value with IRemoteToolCommand::ModifyBYTES.

IRemoteToolCommand::SetString

Adds a string value to a command packet.

IRemoteToolCommand::SetStringModifiable

Adds a string value to a command packet and makes it randomly accessible so you can modify the value later with IRemoteToolCommand::ModifyString.

IRemoteToolCommand::SetWORD

Adds a WORD value to a command packet.

IRemoteToolCommand::SetWORDModifiable

Adds a WORD value to a command packet and makes it randomly accessible so you can modify the value later with IRemoteToolCommand::ModifyWORD.

IRemoteToolCommand::SetDWORD

Adds a DWORD value to a command packet.

IRemoteToolCommand::SetDWORDModifiable

Adds a DWORD value to a command packet and makes it randomly accessible so that you can later modify the value with IRemoteToolCommand::ModifyDWORD.

The following table displays the public properties associated with this interface.

Property

Description

Command

Gets or sets the command ID for the command packet.

See Also

Reference

Remote Tools Server Interfaces