Amazon.Runtime.Internal.Util.WrapperStream.Seek C# (CSharp) Метод

Seek() публичный Метод

Sets the position within the current stream.
public Seek ( long offset, SeekOrigin origin ) : long
offset long A byte offset relative to the origin parameter.
origin SeekOrigin /// A value of type System.IO.SeekOrigin indicating the reference point used /// to obtain the new position.
Результат long
        public override long Seek(long offset, SeekOrigin origin)
        {
            return BaseStream.Seek(offset, origin);
        }