public int ReadInt32()

in src/main/csharp/StreamMessage.cs [114:125]


		public int ReadInt32()
		{
			try
			{
				return this.tibcoStreamMessage.ReadInt();
			}
			catch(Exception ex)
			{
				ExceptionUtil.WrapAndThrowNMSException(ex);
				return 0;
			}
		}