MemoryStream.Seek Method
Assembly: mscorlib (in mscorlib.dll)
public long Seek ( long offset, SeekOrigin loc )
public override function Seek ( offset : long, loc : SeekOrigin ) : long
Parameters
- offset
The new position within the stream. This is relative to the loc parameter, and can be positive or negative.
- loc
A value of type SeekOrigin, which acts as the seek reference point.
Return Value
The new position within the stream, calculated by combining the initial reference point and the offset.| Exception type | Condition |
|---|---|
| Seeking is attempted before the beginning of the stream. | |
| offset is greater than MaxValue. | |
| There is an invalid SeekOrigin. | |
| The current stream instance is closed. |
For an example of creating a file and writing text to a file, see How to: Write Text to a File. For an example of reading text from a file, see How to: Read Text from a File. For an example of reading from and writing to a binary file, see How to: Read and Write to a Newly Created Data File.
This method overrides Seek.
Seeking to any location beyond the length of the stream is supported.
This code example is part of a larger example provided for the MemoryStream class.
// Set the position to the beginning of the stream. memStream.Seek(0, SeekOrigin.Begin);
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.