Edit

Share via


CborReader.ReadEncodedValue(Boolean) Method

Definition

Reads the next CBOR data item, returning a ReadOnlyMemory<T> view of the encoded value. For indefinite length encodings this includes the break byte.

public ReadOnlyMemory<byte> ReadEncodedValue (bool disableConformanceModeChecks = false);
member this.ReadEncodedValue : bool -> ReadOnlyMemory<byte>
Public Function ReadEncodedValue (Optional disableConformanceModeChecks As Boolean = false) As ReadOnlyMemory(Of Byte)

Parameters

disableConformanceModeChecks
Boolean

true to disable conformance mode validation for the read value, equivalent to using Lax; otherwise, false.

Returns

A view of the encoded value as a contiguous region of memory.

Exceptions

The data item is not a valid CBOR data item encoding.

-or-

The CBOR encoding is not valid under the current conformance mode.

Applies to