ReadState 枚举

定义

指定读取器的状态。

public enum class ReadState
public enum ReadState
type ReadState = 
Public Enum ReadState
继承
ReadState

字段

Closed 4

已调用 Close() 方法。

EndOfFile 3

已成功到达文件结尾。

Error 2

出现错误,阻止读取操作继续进行。

Initial 0

未调用 Read 方法。

Interactive 1

已调用 Read 方法。 可能对读取器调用了其他方法。

适用于