CborReader(ReadOnlyMemory<Byte>, CborConformanceMode, Boolean) Constructor
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.
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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET