Click or drag to resize
GDFileRandomAccessStreamSeek Method
Sets the position of the stream to the specified value.

Namespace:  GD
Assembly:  GD (in GD.dll) Version: 255.255.255.255
Syntax
public void Seek(
	ulong position
)

Parameters

position
Type: SystemUInt64
The new position of the stream.

Implements

IRandomAccessStreamSeek(UInt64)
Remarks

Warning This method does not check the position to make sure the value is valid for the stream.

If the position is invalid for the stream, the ReadAsync(IBuffer, UInt32, InputStreamOptions) and WriteAsync(IBuffer) methods will return an error if you call them.

See Also