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

ReadDouble() public method

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