Writes a char to the stream message.

Namespace:  Apache.NMS
Assembly:  Apache.NMS (in Apache.NMS.dll)

Syntax

Visual Basic
Sub WriteChar ( _
	value As Char _
)
C#
void WriteChar(
	char value
)
Visual C++
void WriteChar(
	wchar_t value
)
JavaScript
function writeChar(value);

Parameters

value
Type: System..::..Char
A Char

Exceptions

ExceptionCondition
Apache.NMS..::..NMSException if the NMS provider fails to write to the message due to some internal error.
Apache.NMS..::..MessageNotWriteableException if the message is in read-only mode.

See Also