[TIBCO.EMS.UFOCLIENT .NET client library 7.0 documentation]

Writes a boolean to the bytes message stream as a 1-byte value. The value true is written as the value (byte)1; the value false is written as the value (byte)0.

Namespace:  TIBCO.EMS.UFO
Assembly:  TIBCO.EMS.UFO (in TIBCO.EMS.UFO.dll)

Syntax

public void WriteBoolean(
	bool value
)
Public Sub WriteBoolean ( _
	value As Boolean _
)
public:
void WriteBoolean(
	bool value
)

Parameters

value
Type: System..::.Boolean
the boolean value to be written

Remarks

Writes one byte of data to the stream and advances the write position so that the next write call appends to the new end of the stream.

See Also