Verifies whether the specified stream is not null, writable and seekable.

Namespace: FirstFloor.Documents.IO
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public static void VerifyWriteAndSeek(
	this Stream stream
)
Visual Basic
<ExtensionAttribute> _
Public Shared Sub VerifyWriteAndSeek ( _
	stream As Stream _
)
Visual C++
[ExtensionAttribute]
public:
static void VerifyWriteAndSeek(
	Stream^ stream
)

Parameters

stream
Type: System.IO..::..Stream
The stream.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Stream. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also