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
Enumerates the data in the Command Packet using a GenericDataAcceptor.
Namespace: Microsoft.RemoteToolSdk.PluginComponents
Assembly: Microsoft.RemoteToolSdk (in microsoft.remotetoolsdk.dll)
Syntax
public void RenderGeneric (
GenericDataAcceptor acceptor
)
'Declaration
Public Sub RenderGeneric ( _
acceptor As GenericDataAcceptor _
)
Parameters
- acceptor
The Generic Data Acceptor to render the packet to.
Remarks
If you populated a command packet with code like this:
CommandPacket sendCommand = new CommandPacket();
sendCommand.CommandId = 42;
sendCommand.AddParameterString("First Parameter");
sendCommand.AddParameterString("Second Parameter");
The data would be rendered like this (header not included):
Category Description Value
----------------------------------------------
Command Packet Command ID 42
Command Packet String First Parameter
Command Packet String Second Parameter
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