[TIBCO.EMS .NET client library 8.1 documentation]

Writes a boolean to the stream message.

Namespace:  TIBCO.EMS
Assembly:  TIBCO.EMS (in TIBCO.EMS.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. The value true is written as (byte)1; the value false is written as (byte)0.

Remarks

Each call writes a data value to the stream and advances the write position so that the next write call appends to the new end of the stream.

See Also