Writes a byte value to the output stream. (**DEPRECATED** in Symphony 3.1)

C# |
public void WriteByte( byte x )

- x (Byte)
- The byte value to be written to the output stream.

NOTE :
This method has been deprecated. Use: OutputStream::WriteByteArray(Byte x[], int offset, int length) or OutputStream::WriteByteArray(Byte x[]) to write binary information to the stream instead.

Exception | Condition |
---|---|
[SoamException] | If the value could not be written to the output stream. |