Write a four byte value to the message stream representing the integer value passed. High byte first.

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

Syntax

Visual Basic
Sub WriteInt32 ( _
	value As Integer _
)
C#
void WriteInt32(
	int value
)
Visual C++
void WriteInt32(
	int value
)
JavaScript
function writeInt32(value);

Parameters

value
Type: System..::..Int32
A Int32

Exceptions

ExceptionCondition
Apache.NMS..::..MessageNotWriteableException Thrown when the Message is in read-only mode.
Apache.NMS..::..NMSException Thrown when there is an unhandled exception thrown from the provider.

See Also