Asn1Tag.TryEncode(Span<Byte>, Int32) Method

Definition

Attempts to write the BER-encoded form of this tag to destination.

public:
 bool TryEncode(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryEncode (Span<byte> destination, out int bytesWritten);
member this.TryEncode : Span<byte> * int -> bool
Public Function TryEncode (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean

Parameters

destination
Span<Byte>

The start of where the encoded tag should be written.

bytesWritten
Int32

Receives the value from CalculateEncodedSize() on success, 0 on failure.

Returns

false if destination.Length < CalculateEncodedSize()(), true otherwise.

Applies to