'Declaration Public Overrides Function Seek( _ ByVal offset As Long, _ ByVal origin As SeekOrigin _ ) As Long
'Usage Dim instance As FormattedCompressedStream Dim offset As Long Dim origin As SeekOrigin Dim value As Long value = instance.Seek(offset, origin)
public override long Seek( long offset, SeekOrigin origin )
Parameters
- offset
- A byte offset relative to origin.
- origin
- A System.IO.SeekOrigin value indicating the reference point used to obtain the new position
Return Value
The new position within the current stream.