WriteInt method

Appends an integer value to the QABinaryMessage instance's message body.

Syntax
Visual Basic
Public Sub WriteInt( _
   ByVal val As Integer _
)
C#
public void WriteInt(
   int val
);
Parameters
  • val   The int value to write to the message body.

Remarks

The integer parameter is represented as a 4 byte value and higher order bytes are appended first.

See also