CborWriter.WriteTextString Method

Definition

Overloads

WriteTextString(ReadOnlySpan<Char>)

Writes a buffer as a UTF-8 string encoding (major type 3).

WriteTextString(String)

Writes a buffer as a UTF-8 string encoding (major type 3).

WriteTextString(ReadOnlySpan<Char>)

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

Writes a buffer as a UTF-8 string encoding (major type 3).

public:
 void WriteTextString(ReadOnlySpan<char> value);
public void WriteTextString (ReadOnlySpan<char> value);
member this.WriteTextString : ReadOnlySpan<char> -> unit
Public Sub WriteTextString (value As ReadOnlySpan(Of Char))

Parameters

value
ReadOnlySpan<Char>

The value to write.

Exceptions

The supplied string is not a valid UTF-8 encoding, which is not permitted under the current conformance mode.

Writing a new value exceeds the definite length of the parent data item.

-or-

The major type of the encoded value is not permitted in the parent data item.

-or-

The written data is not accepted under the current conformance mode.

Applies to

WriteTextString(String)

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

Writes a buffer as a UTF-8 string encoding (major type 3).

public:
 void WriteTextString(System::String ^ value);
public void WriteTextString (string value);
member this.WriteTextString : string -> unit
Public Sub WriteTextString (value As String)

Parameters

value
String

The value to write.

Exceptions

The provided value cannot be null.

The supplied string is not a valid UTF-8 encoding, which is not permitted under the current conformance mode.

Writing a new value exceeds the definite length of the parent data item.

-or-

The major type of the encoded value is not permitted in the parent data item.

-or-

The written data is not accepted under the current conformance mode.

Applies to