Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
3/12/2014
Adds a DWORD to the Command Packet.
Namespace: Microsoft.RemoteToolSdk.PluginComponents
Assembly: Microsoft.RemoteToolSdk (in microsoft.remotetoolsdk.dll)
Syntax
public void AddParameterDWORD (
uint data
)
'Declaration
Public Sub AddParameterDWORD ( _
data As UInteger _
)
Parameters
- data
A DWORD.
Example
The following example builds a Command Packet, sets the Command ID to a value of 42, and adds a DWORD (uint32) as a parameter.
CommandPacket sendCommand = new CommandPacket();
sendCommand.CommandId = 42;
sendCommand.AddParameterDWORD( 492839 );
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread-safe. Any instance members are not guaranteed to be thread-safe.
See Also
Reference
CommandPacket Class
CommandPacket Members
Microsoft.RemoteToolSdk.PluginComponents Namespace