Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Stream.Position Property

Definition

Namespace:
System.IO
Assemblies:
mscorlib.dll, System.IO.dll
Assemblies:
netstandard.dll, System.Runtime.dll
Assembly:
System.IO.dll
Assembly:
System.Runtime.dll
Assembly:
mscorlib.dll
Assembly:
netstandard.dll
Source:
Stream.cs
Source:
Stream.cs
Source:
Stream.cs
Source:
Stream.cs
Source:
Stream.cs

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.

When overridden in a derived class, gets or sets the position within the current stream.

public:
 abstract property long Position { long get(); void set(long value); };
public abstract long Position { get; set; }
member this.Position : int64 with get, set
Public MustOverride Property Position As Long

Property Value

The current position within the stream.

Exceptions

An I/O error occurs.

The stream does not support seeking.

Methods were called after the stream was closed.

Remarks

The stream must support seeking to get or set the position. Use the CanSeek property to determine whether the stream supports seeking.

Seeking to any location beyond the length of the stream is supported.

Applies to

See also


Feedback

Was this page helpful?