Gets a value indicating whether the current Stream supports seeking.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Overrides ReadOnly Property CanSeek As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As CodingStream
Dim value As Boolean
value = instance.CanSeek |
| C# | |
|---|
public override bool CanSeek {get;} |
| Managed Extensions for C++ | |
|---|
public: __property bool get_CanSeek() override; |
| C++/CLI | |
|---|
public:
property bool CanSeek {
bool get() override;
} |
Property Value
This property always returns false;
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also