Enum StreamStatus NamespaceSdl3Sharp.IO AssemblySdl3Sharp.dll Represents the status for a Stream as a result of read or write operations public enum StreamStatus Fields Eof = 2 End of file (stream) Error = 1 Read or write error NotReady = 3 For non blocking streams: not ready ReadOnly = 4 Tried to write a read-only stream Ready = 0 Everything is ready (no errors and not EOF) WriteOnly = 5 Tried to read a write-only stream