in src/main/csharp/StreamMessage.cs [649:661]
public void WriteByte(byte value)
{
InitializeWriting();
try
{
this.dataOut.Write(PrimitiveMap.BYTE_TYPE);
this.dataOut.Write(value);
}
catch(IOException e)
{
NMSExceptionSupport.Create(e);
}
}