NSStreamStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The current status of an NSStream.
public enum NSStreamStatus
type NSStreamStatus =
- Inheritance
-
NSStreamStatus
Fields
Name | Value | Description |
---|---|---|
NotOpen | 0 | The stream is not yet open. |
Opening | 1 | The stream is in the opening state. |
Open | 2 | The stream has been opened. |
Reading | 3 | The stream is reading. |
Writing | 4 | The stream is writing. |
AtEnd | 5 | At the end. |
Closed | 6 | The stream is closed. |
Error | 7 | Error |