in src/main/csharp/StreamMessage.cs [62:73]
public int ReadBytes(byte[] value)
{
try
{
return this.tibcoStreamMessage.ReadBytes(value);
}
catch(Exception ex)
{
ExceptionUtil.WrapAndThrowNMSException(ex);
return 0;
}
}