AsnReader.ReadUtcTime 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.
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
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.
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.
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.