Edit

Share via


AsnReader.ReadUtcTime Method

Definition

Overloads

ReadUtcTime(Nullable<Asn1Tag>)

Reads the next value as a UTCTime with a specified tag using the UtcTimeTwoDigitYearMax value from options passed to the constructor (with a default of 2049).

ReadUtcTime(Int32, Nullable<Asn1Tag>)

Reads the next value as a UTCTime with a specified tag.

ReadUtcTime(Nullable<Asn1Tag>)

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

Reads the next value as a UTCTime with a specified tag using the UtcTimeTwoDigitYearMax value from options passed to the constructor (with a default of 2049).

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

Parameters

expectedTag
Nullable<Asn1Tag>

The tag to check for before reading, or null for the default tag (Universal 23).

Returns

The decoded value.

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.

expectedTag.TagClass is Universal, but expectedTag.TagValue is not correct for the method.

Applies to

ReadUtcTime(Int32, Nullable<Asn1Tag>)

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

Reads the next value as a UTCTime with a specified tag.

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

Parameters

twoDigitYearMax
Int32

The largest year to represent with this value.

expectedTag
Nullable<Asn1Tag>

The tag to check for before reading, or null for the default tag (Universal 23).

Returns

The decoded value.

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.

expectedTag.TagClass is Universal, but expectedTag.TagValue is not correct for the method.

Applies to