MemoryStream::Position Property

 

Gets or sets the current position within the stream.

Namespace:   System.IO
Assembly:  mscorlib (in mscorlib.dll)

public:
property long long Position {
	virtual long long get() override;
	virtual void set(long long value) override;
}

Property Value

Type: System::Int64

The current position within the stream.

Exception Condition
ArgumentOutOfRangeException

The position is set to a negative value or a value greater than MaxValue.

ObjectDisposedException

The stream is closed.

This code example is part of a larger example provided for the MemoryStream class.

// Write the stream properties to the console.
Console::WriteLine( "Capacity = {0}, Length = {1}, "
"Position = {2}\n", memStream->Capacity.ToString(), memStream->Length.ToString(), memStream->Position.ToString() );

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: