AsnReader.TryReadOctetString 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.
Reads the next value as an OCTET STRING with a specified tag, copying the value into a provided destination buffer.
public bool TryReadOctetString (Span<byte> destination, out int bytesWritten, System.Formats.Asn1.Asn1Tag? expectedTag = default);
member this.TryReadOctetString : Span<byte> * int * Nullable<System.Formats.Asn1.Asn1Tag> -> bool
Public Function TryReadOctetString (destination As Span(Of Byte), ByRef bytesWritten As Integer, Optional expectedTag As Nullable(Of Asn1Tag) = Nothing) As Boolean
Parameters
- bytesWritten
- Int32
On success, receives the number of bytes written to destination
.
The tag to check for before reading, or null
for the default tag (Universal 4).
Returns
true
and advances the reader if destination
had sufficient length to receive the value, otherwise false
and the reader does not advance.
Exceptions
The next value does not have the correct tag.
-or-
The length encoding is not valid under the current encoding rules.
-or-
The contents are not valid under the current encoding rules.