Email |
[DataContractAttribute] public enum EmailDateTimeFormat
| Member name | Value | Description |
|---|---|---|
| MonthDayYearTime | 0 | 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) |
| FullDateShortTime | 1 | 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) |
| YearMonthDayTime | 2 | 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) |
| RFC1123 | 3 | 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 |