Click or drag to resize

EmailDateTimeFormat Enumeration

Formatted date/time options for extracted email text dates.

Namespace: OpenDiscoverSDK.Interfaces.Settings
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntax
C#
[DataContractAttribute]
public enum EmailDateTimeFormat
Members
Member nameValueDescription
MonthDayYearTime0

Month/Day/Year short time pattern.

This format corresponds to the .NET DateTime "MM/dd/yyyy h:mm tt" format specifier (InvariantCulture) with optional UTC offset if ShowUtcOffsetForTime is true.

Example: 6/15/2009 8:46 PM

Example: 6/15/2009 8:46 PM UTC-7:00 (UTC offset only displayed if ShowUtcOffsetForTime is true)

FullDateShortTime1

Full date/short time pattern.

This format corresponds to the .NET DateTime "dddd, dd MMMM yyyy h:mm tt" format specifier (InvariantCulture) with optional UTC offset if ShowUtcOffsetForTime is true.

Example: Monday, June 15, 2009 8:45 PM

Example: Monday, June 15, 2009 8:45 PM UTC-7:00 (UTC offset only displayed if ShowUtcOffsetForTime is true)

YearMonthDayTime2

Year/Month/Day short time pattern.

This format corresponds to the .NET DateTime "yyyy/MM/dd h:mm tt" format specifier (InvariantCulture) with optional UTC offset if ShowUtcOffsetForTime is true.

Example: 2009/06/15 8:46 PM

Example: 2009/06/15 8:46 PM UTC-7:00 (UTC offset only displayed if ShowUtcOffsetForTime is true)

RFC11233

RFC 1123 standard format. This format always specifies time as Coordinated Universal Time (UTC).

This format corresponds to the .NET DateTime "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'" format specifier. The RFC1123 format is a defined standard, and it is always the same, regardless of the culture.

Properties CollectionTimeZone and ShowUtcOffsetForTime are always ignored for this setting since this format always displays UTC time.

Example: Thu, 10 Apr 2008 13:30:00 GMT

Remarks
These date/time formats only apply to email sent dates, appointment start/end dates, task dates, and journal dates in the extracted text of email formats.
See Also