AsnReader.ReadUtcTime 方法

定义

重载

ReadUtcTime(Nullable<Asn1Tag>)

读取下一个值,作为带有指定标记并使用传递给构造函数的选项中的 UtcTimeTwoDigitYearMax 值(默认值为 2049)的 UTCTime 值。

ReadUtcTime(Int32, Nullable<Asn1Tag>)

读取下一个值,作为带有指定标记的 UTCTime 值。

ReadUtcTime(Nullable<Asn1Tag>)

Source:
AsnDecoder.UtcTime.cs
Source:
AsnDecoder.UtcTime.cs
Source:
AsnDecoder.UtcTime.cs

读取下一个值,作为带有指定标记并使用传递给构造函数的选项中的 UtcTimeTwoDigitYearMax 值(默认值为 2049)的 UTCTime 值。

public DateTimeOffset ReadUtcTime (System.Formats.Asn1.Asn1Tag? expectedTag = default);
member this.ReadUtcTime : Nullable<System.Formats.Asn1.Asn1Tag> -> DateTimeOffset
Public Function ReadUtcTime (Optional expectedTag As Nullable(Of Asn1Tag) = Nothing) As DateTimeOffset

参数

expectedTag
Nullable<Asn1Tag>

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

返回

已解码的值。

例外

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

-或-

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

-或-

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

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

适用于

ReadUtcTime(Int32, Nullable<Asn1Tag>)

Source:
AsnDecoder.UtcTime.cs
Source:
AsnDecoder.UtcTime.cs
Source:
AsnDecoder.UtcTime.cs

读取下一个值,作为带有指定标记的 UTCTime 值。

public DateTimeOffset ReadUtcTime (int twoDigitYearMax, System.Formats.Asn1.Asn1Tag? expectedTag = default);
member this.ReadUtcTime : int * Nullable<System.Formats.Asn1.Asn1Tag> -> DateTimeOffset
Public Function ReadUtcTime (twoDigitYearMax As Integer, Optional expectedTag As Nullable(Of Asn1Tag) = Nothing) As DateTimeOffset

参数

twoDigitYearMax
Int32

用此值表示的最大年份。

expectedTag
Nullable<Asn1Tag>

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

返回

已解码的值。

例外

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

-或-

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

-或-

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

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

适用于