public short ReadInt16()

in src/main/csharp/StreamMessage.cs [152:163]


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