Asn1UtcTime(DateTime, TimeZoneInfo, Boolean) Constructor

Initializes a new instance of the Asn1UtcTime class from a date time object to encode, time zone information and value that indicates whether to include millisecond information.

Definition

Namespace: SysadminsLV.Asn1Parser.Universal
Assembly: SysadminsLV.Asn1Parser (in SysadminsLV.Asn1Parser.dll) Version: 1.3.0+5c47da1850320381293fe03930b30c8078b8bf98
C#
public Asn1UtcTime(
	DateTime time,
	TimeZoneInfo? zone = null,
	bool preciseTime = false
)

Parameters

time  DateTime
A DateTime object in destination time zone if zone information is provided. Local time zone is assumed if zone information is not provided (null).
zone  TimeZoneInfo  (Optional)
A TimeZoneInfo object that represents time zone information.
preciseTime  Boolean  (Optional)
True if encoded value should contain millisecond information, otherwise False.

See Also