public AmqpTimestamp ReadTimestamp()
        {
            AmqpTimestamp result = WireFormatting.ReadTimestamp(_memory.Slice(_memoryOffset));

            _memoryOffset += 8;
            return(result);
        }
        public AmqpTimestamp ReadTimestamp()
        {
            AmqpTimestamp result = WireFormatting.ReadTimestamp(Span);

            _offset += 8;
            return(result);
        }
Ejemplo n.º 3
0
 public AmqpTimestamp ReadTimestamp()
 {
     return(WireFormatting.ReadTimestamp(BaseReader));
 }
 public AmqpTimestamp ReadTimestamp()
 {
     ClearBits();
     return(WireFormatting.ReadTimestamp(BaseReader));
 }