CoseMessage.TryEncode(Span<Byte>, Int32) 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.
When overriden in a derived class, attempts to encode this message into the specified buffer.
public:
abstract bool TryEncode(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public abstract bool TryEncode (Span<byte> destination, out int bytesWritten);
abstract member TryEncode : Span<byte> * int -> bool
Public MustOverride Function TryEncode (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
Parameters
- bytesWritten
- Int32
On success, receives the number of bytes written to destination
. This parameter is treated as uninitialized.
Returns
true
if destination
had sufficient length to receive the value; otherwise, false
.
Exceptions
The ProtectedHeaders and UnprotectedHeaders collections have one or more labels in common.
Remarks
Use GetEncodedLength() to determine how many bytes result in encoding this message.