CborWriter.WriteTextString 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.
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.