WriteBoolean method

Appends a boolean value to the QABinaryMessage instance's message body.

Syntax
Visual Basic
Public Sub WriteBoolean( _
   ByVal val As Boolean _
)
C#
public void WriteBoolean(
   bool val
);
Parameters
  • val   The boolean value to write to the message body.

Remarks

The boolean is represented as a one-byte value. True is represented as 1; false is represented as 0.

See also