Amqp.ByteBuffer.Seek C# (CSharp) 메소드

Seek() 공개 메소드

Sets the read position.
public Seek ( int seekPosition ) : void
seekPosition int Position to set.
리턴 void
        public void Seek(int seekPosition)
        {
            Fx.Assert(seekPosition >= 0, "seekPosition must not be negative.");
            Fx.Assert((this.start + seekPosition) <= this.write, "seekPosition too large.");
            this.read = this.start + seekPosition;
        }