CborReader.ReadEncodedValue(Boolean) Method
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.
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.