AsnReader.ReadBitString(Int32, Nullable<Asn1Tag>) 方法

定义

读取下一个值,作为带有指定标记的 BIT STRING 值,并以字节数组形式返回该值。

public byte[] ReadBitString (out int unusedBitCount, System.Formats.Asn1.Asn1Tag? expectedTag = default);
member this.ReadBitString : int * Nullable<System.Formats.Asn1.Asn1Tag> -> byte[]
Public Function ReadBitString (ByRef unusedBitCount As Integer, Optional expectedTag As Nullable(Of Asn1Tag) = Nothing) As Byte()

参数

unusedBitCount
Int32

成功时,将接收由编写器报告为“未使用”的最后一个字节中的位数。

expectedTag
Nullable<Asn1Tag>

读取前要检查的标记,或使用 null 作为默认标记(通用 1)。

返回

Byte[]

一个新分配的、精确大小的数组中的值的副本。

例外

下一个值没有正确的标记。

-或-

长度编码在当前编码规则下无效。

-或-

在当前编码规则下,内容无效。

expectedTagTagClassUniversal,但 expectedTagTagValue 对于 方法,则不正确。

适用于