CborWriter.WriteByteString 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
WriteByteString(Byte[]) |
Writes a buffer as a byte string encoding (major type 2). |
WriteByteString(ReadOnlySpan<Byte>) |
Writes a buffer as a byte string encoding (major type 2). |
WriteByteString(Byte[])
- Source:
- CborWriter.String.cs
- Source:
- CborWriter.String.cs
- Source:
- CborWriter.String.cs
- Source:
- CborWriter.String.cs
Writes a buffer as a byte string encoding (major type 2).
public:
void WriteByteString(cli::array <System::Byte> ^ value);
public void WriteByteString (byte[] value);
member this.WriteByteString : byte[] -> unit
Public Sub WriteByteString (value As Byte())
Parameters
- value
- Byte[]
The value to write.
Exceptions
The provided value cannot be null
.
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
WriteByteString(ReadOnlySpan<Byte>)
- Source:
- CborWriter.String.cs
- Source:
- CborWriter.String.cs
- Source:
- CborWriter.String.cs
- Source:
- CborWriter.String.cs
Writes a buffer as a byte string encoding (major type 2).
public:
void WriteByteString(ReadOnlySpan<System::Byte> value);
public void WriteByteString (ReadOnlySpan<byte> value);
member this.WriteByteString : ReadOnlySpan<byte> -> unit
Public Sub WriteByteString (value As ReadOnlySpan(Of Byte))
Parameters
- value
- ReadOnlySpan<Byte>
The value to write.
Exceptions
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.