public long ReadInt64()

in src/main/csharp/StreamMessage.cs [127:138]


		public long ReadInt64()
		{
			try
			{
				return this.tibcoStreamMessage.ReadLong();
			}
			catch(Exception ex)
			{
				ExceptionUtil.WrapAndThrowNMSException(ex);
				return 0;
			}
		}