Apache.NMS.Commands.BytesMessage.ReadInt64 C# (CSharp) Method

ReadInt64() public method

public ReadInt64 ( ) : long
return long
        public long ReadInt64()
        {
            InitializeReading();
            try
            {
                return dataIn.ReadInt64();
            }
            catch(EndOfStreamException e)
            {
                throw NMSExceptionSupport.CreateMessageEOFException(e);
            }
            catch(IOException e)
            {
                throw NMSExceptionSupport.CreateMessageFormatException(e);
            }
        }