Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

BufferedStream::CanSeek Property

 

Gets a value indicating whether the current stream supports seeking.

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

public:
property bool CanSeek {
	virtual bool get() override;
}

Property Value

Type: System::Boolean

true if the stream supports seeking; false if the stream is closed or if the stream was constructed from an operating system handle such as a pipe or output to the console.

If a class derived from Stream does not support seeking, calls to Length, SetLength, Position, and Seek throw a NotSupportedException.

If the stream is closed, this property returns false.

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

// Check whether the underlying stream supports seeking.
Console::WriteLine( "NetworkStream {0} seeking.\n", bufStream->CanSeek ? (String^)"supports" : "does not support" );

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft