| ActiveDirectoryGetDateTimeFromUTCCodedTime Method |
Gets a DateTime representation from the UTC coded time string used by some Active Directory attributes.
Namespace:
Galactic.ActiveDirectory
Assembly:
Galactic.ActiveDirectory (in Galactic.ActiveDirectory.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static Nullable<DateTime> GetDateTimeFromUTCCodedTime(
string utcCodedTime
)
Public Shared Function GetDateTimeFromUTCCodedTime (
utcCodedTime As String
) As Nullable(Of DateTime)
public:
static Nullable<DateTime> GetDateTimeFromUTCCodedTime(
String^ utcCodedTime
)
static member GetDateTimeFromUTCCodedTime :
utcCodedTime : string -> Nullable<DateTime>
Parameters
- utcCodedTime
- Type: SystemString
The string that contains the UTC coded time.
Return Value
Type:
NullableDateTimeA new DateTime with the time, or null if the string could not be parsed or was not supplied.
See Also