CoseMultiSignMessage.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.
Attempts to encode this message into the specified buffer.
public:
override bool TryEncode(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public override bool TryEncode (Span<byte> destination, out int bytesWritten);
override this.TryEncode : Span<byte> * int -> bool
Public Overrides 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
.
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.
-or-
The message does not contain at least one signature.
Remarks
Use GetEncodedLength() to determine how many bytes result in encoding this message.