Date Result

Defined in namespace Scandit.DataCapture.ID.Data

DateResult
class DateResult

Added in version 6.10.0

A date extracted from a personal identification document. May represent either a full date (day, month, year), just a month and a year or just a year.

Day
int Day { get; }

Added in version 6.10.0

The extracted day of the month or 0 if this result represents a month and a year only.

Month
int Month { get; }

Added in version 6.10.0

A number from 1 to 12 representing the extracted month, where 1 represents January, 2 - February and so on or 0 if the results represents a year only.

Year
int Year { get; }

Added in version 6.10.0

The extracted year.

Date
DateTime Date { get; }

Added in version 6.10.0

A Date corresponding to this DateResult. The timezone is set to UTC, the time to midnight. If the day information is missing, it is set to the 1st day of the month, if the month information is missing, it is set to the 1st month of the year.

Deprecated since version 6.19.0: Use LocalDate or UtcDate instead.

LocalDate
DateTime LocalDate { get; }

Added in version 6.19.0

A Date corresponding to this DateResult using the local timezone. If the day information is missing, it is set to the 1st day of the month, if the month information is missing, it is set to the 1st month of the year

UtcDate
DateTime UtcDate { get; }

Added in version 6.19.0

A Date corresponding to this DateResult. The timezone is set to UTC, the time to midnight. If the day information is missing, it is set to the 1st day of the month, if the month information is missing, it is set to the 1st month of the year.