Edit

Share via


CborReader(ReadOnlyMemory<Byte>, CborConformanceMode, Boolean) Constructor

Definition

Initializes a CborReader instance over the specified data with the given configuration.

public CborReader (ReadOnlyMemory<byte> data, System.Formats.Cbor.CborConformanceMode conformanceMode = System.Formats.Cbor.CborConformanceMode.Strict, bool allowMultipleRootLevelValues = false);
new System.Formats.Cbor.CborReader : ReadOnlyMemory<byte> * System.Formats.Cbor.CborConformanceMode * bool -> System.Formats.Cbor.CborReader
Public Sub New (data As ReadOnlyMemory(Of Byte), Optional conformanceMode As CborConformanceMode = System.Formats.Cbor.CborConformanceMode.Strict, Optional allowMultipleRootLevelValues As Boolean = false)

Parameters

data
ReadOnlyMemory<Byte>

The CBOR-encoded data to read.

conformanceMode
CborConformanceMode

One of the enumeration values to specify a conformance mode guiding the checks performed on the encoded data. Defaults to Strict conformance mode.

allowMultipleRootLevelValues
Boolean

true to indicate that multiple root-level values are supported by the reader; otherwise, false.

Exceptions

conformanceMode is not defined.

Applies to