編集

次の方法で共有


CborWriter Constructors

Definition

Overloads

CborWriter(CborConformanceMode, Boolean, Boolean)

Initializes a new instance of CborWriter class using the specified configuration.

CborWriter(CborConformanceMode, Boolean, Boolean, Int32)

CborWriter(CborConformanceMode, Boolean, Boolean)

Source:
CborWriter.cs
Source:
CborWriter.cs
Source:
CborWriter.cs
Source:
CborWriter.cs

Initializes a new instance of CborWriter class using the specified configuration.

public:
 CborWriter(System::Formats::Cbor::CborConformanceMode conformanceMode, bool convertIndefiniteLengthEncodings, bool allowMultipleRootLevelValues);
public CborWriter (System.Formats.Cbor.CborConformanceMode conformanceMode = System.Formats.Cbor.CborConformanceMode.Strict, bool convertIndefiniteLengthEncodings = false, bool allowMultipleRootLevelValues = false);
public CborWriter (System.Formats.Cbor.CborConformanceMode conformanceMode, bool convertIndefiniteLengthEncodings, bool allowMultipleRootLevelValues);
new System.Formats.Cbor.CborWriter : System.Formats.Cbor.CborConformanceMode * bool * bool -> System.Formats.Cbor.CborWriter
Public Sub New (Optional conformanceMode As CborConformanceMode = System.Formats.Cbor.CborConformanceMode.Strict, Optional convertIndefiniteLengthEncodings As Boolean = false, Optional allowMultipleRootLevelValues As Boolean = false)
Public Sub New (conformanceMode As CborConformanceMode, convertIndefiniteLengthEncodings As Boolean, allowMultipleRootLevelValues As Boolean)

Parameters

conformanceMode
CborConformanceMode

One of the enumeration values that specifies the guidance on the conformance checks performed on the encoded data. Defaults to Strict conformance mode.

convertIndefiniteLengthEncodings
Boolean

true to enable automatically converting indefinite-length encodings into definite-length equivalents and allow use of indefinite-length write APIs in conformance modes that otherwise do not permit it; otherwise, false.

allowMultipleRootLevelValues
Boolean

true to allow multiple root-level values to be written by the writer; otherwise, false.

Exceptions

conformanceMode is not a defined CborConformanceMode.

Applies to

CborWriter(CborConformanceMode, Boolean, Boolean, Int32)

Source:
CborWriter.cs
Source:
CborWriter.cs
public CborWriter (System.Formats.Cbor.CborConformanceMode conformanceMode = System.Formats.Cbor.CborConformanceMode.Strict, bool convertIndefiniteLengthEncodings = false, bool allowMultipleRootLevelValues = false, int initialCapacity = -1);
new System.Formats.Cbor.CborWriter : System.Formats.Cbor.CborConformanceMode * bool * bool * int -> System.Formats.Cbor.CborWriter
Public Sub New (Optional conformanceMode As CborConformanceMode = System.Formats.Cbor.CborConformanceMode.Strict, Optional convertIndefiniteLengthEncodings As Boolean = false, Optional allowMultipleRootLevelValues As Boolean = false, Optional initialCapacity As Integer = -1)

Parameters

conformanceMode
CborConformanceMode
convertIndefiniteLengthEncodings
Boolean
allowMultipleRootLevelValues
Boolean
initialCapacity
Int32

Applies to