AsnDecoder.TryReadPrimitiveCharacterStringBytes 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
如果值包含在单个(基元)编码中,则尝试在指定编码规则下,从带有指定标记的 source
中获取未处理的字符串值。
public:
static bool TryReadPrimitiveCharacterStringBytes(ReadOnlySpan<System::Byte> source, System::Formats::Asn1::AsnEncodingRules ruleSet, System::Formats::Asn1::Asn1Tag expectedTag, [Runtime::InteropServices::Out] ReadOnlySpan<System::Byte> % value, [Runtime::InteropServices::Out] int % bytesConsumed);
public static bool TryReadPrimitiveCharacterStringBytes (ReadOnlySpan<byte> source, System.Formats.Asn1.AsnEncodingRules ruleSet, System.Formats.Asn1.Asn1Tag expectedTag, out ReadOnlySpan<byte> value, out int bytesConsumed);
static member TryReadPrimitiveCharacterStringBytes : ReadOnlySpan<byte> * System.Formats.Asn1.AsnEncodingRules * System.Formats.Asn1.Asn1Tag * ReadOnlySpan * int -> bool
Public Shared Function TryReadPrimitiveCharacterStringBytes (source As ReadOnlySpan(Of Byte), ruleSet As AsnEncodingRules, expectedTag As Asn1Tag, ByRef value As ReadOnlySpan(Of Byte), ByRef bytesConsumed As Integer) As Boolean
参数
- source
- ReadOnlySpan<Byte>
包含编码数据的缓冲区。
- ruleSet
- AsnEncodingRules
解释数据时使用的编码约束。
- expectedTag
- Asn1Tag
读取前要检查的标记。
- value
- ReadOnlySpan<Byte>
成功时,将接收与位字符串的值相对应的输入缓冲区的切片。 该参数未经初始化即被处理。
- bytesConsumed
- Int32
此方法返回时,为编码值的字节总数。 该参数未经初始化即被处理。
返回
如果该字符串值具有基元编码,则为 true
;否则为 false
。
例外
未定义ruleSet
。
注解
此方法不确定字符串是否仅使用编码定义的字符。