public short ReadInt16()

in src/main/csharp/StreamMessage.cs [101:112]


		public short ReadInt16()
		{
			try
			{
				return this.tibcoStreamMessage.ReadShort();
			}
			catch(Exception ex)
			{
				ExceptionUtil.WrapAndThrowNMSException(ex);
				return 0;
			}
		}