StorageItemThumbnail.Seek(UInt64) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the offset of the thumbnail stream to the specified value.
public:
virtual void Seek(unsigned long long position) = Seek;
void Seek(uint64_t const& position);
public void Seek(ulong position);
function seek(position)
Public Sub Seek (position As ULong)
Parameters
- position
-
UInt64
unsigned long long
uint64_t
The number of bytes from the start of the thumbnail stream where the position of the thumbnail stream is set.
Implements
M:Windows.Storage.Streams.IRandomAccessStream.Seek(System.UInt64)
M:Windows.Storage.Streams.IRandomAccessStream.Seek(unsigned long long)
M:Windows.Storage.Streams.IRandomAccessStream.Seek(uint64_t)
Remarks
Warning
This method does not check position to make sure the value is valid. If the value is invalid for the stream, the readAsync and writeAsync methods will return error if they are called.