Stream.Can

A flag enum specifying what the stream is capable of doing.

Values

ValueMeaning
None0
Write1 << 0

The stream supports writing.

Read1 << 1

The stream supports reading.

Seek1 << 2

The stream supports seeking.

Timeout1 << 3

The stream supports being able to set timeouts.

Meta