Class ReadWithCommentResultType

Represents the type of a ReadWithCommentResult, either no value (end of records), having a value (of type T), or having a comment (always a string).

Inheritance
System.Object
ReadWithCommentResultType
Namespace: Cesil
Assembly: Cesil.dll
Syntax
public sealed class ReadWithCommentResultType : Enum

Fields

HasComment

A comment was read.

Declaration
public const ReadWithCommentResultType HasComment
Field Value
Type Description
ReadWithCommentResultType

HasValue

A value was read.

Equivalent to HasValue == true on ReadResult(T).

Declaration
public const ReadWithCommentResultType HasValue
Field Value
Type Description
ReadWithCommentResultType

NoValue

No value was read, the end of records has been reached.

Subsequent attempts to read will fail.

Equivalent to HasValue == false on ReadResult(T).

Declaration
public const ReadWithCommentResultType NoValue
Field Value
Type Description
ReadWithCommentResultType

value__

Declaration
public byte value__
Field Value
Type Description
System.Byte
In This Article
Back to top Generated by DocFX