CryptoStream.CanSeek Property

Definition

Gets a value indicating whether you can seek within the current CryptoStream.

public:
 virtual property bool CanSeek { bool get(); };
public override bool CanSeek { get; }
member this.CanSeek : bool
Public Overrides ReadOnly Property CanSeek As Boolean

Property Value

Always false.

Remarks

Seeking is not enabled in a CryptoStream, so this method always returns false.

Applies to

See also