public byte ReadByte()

in src/main/csharp/StreamMessage.cs [49:60]


		public byte ReadByte()
		{
			try
			{
				return this.tibcoStreamMessage.ReadByte();
			}
			catch(Exception ex)
			{
				ExceptionUtil.WrapAndThrowNMSException(ex);
				return 0;
			}
		}