14 overrides of MinSupportedDateTime
mscorlib (14)
system\globalization\chineselunisolarcalendar.cs (1)
49public override DateTime MinSupportedDateTime {
system\globalization\gregoriancalendar.cs (1)
82public override DateTime MinSupportedDateTime
system\globalization\hebrewcalendar.cs (1)
303public override DateTime MinSupportedDateTime
system\globalization\hijricalendar.cs (1)
91public override DateTime MinSupportedDateTime
system\globalization\japanesecalendar.cs (1)
52public override DateTime MinSupportedDateTime
system\globalization\japaneselunisolarcalendar.cs (1)
48public override DateTime MinSupportedDateTime
system\globalization\juliancalendar.cs (1)
56public override DateTime MinSupportedDateTime
system\globalization\koreancalendar.cs (1)
54public override DateTime MinSupportedDateTime
system\globalization\koreanlunisolarcalendar.cs (1)
49public override DateTime MinSupportedDateTime {
system\globalization\Persiancalendar.cs (1)
71public override DateTime MinSupportedDateTime
system\globalization\taiwancalendar.cs (1)
67public override DateTime MinSupportedDateTime
system\globalization\taiwanlunisolarcalendar.cs (1)
54public override DateTime MinSupportedDateTime {
system\globalization\thaibuddhistcalendar.cs (1)
45public override DateTime MinSupportedDateTime
system\globalization\umalquracalendar.cs (1)
279public override DateTime MinSupportedDateTime
16 references to MinSupportedDateTime
mscorlib (14)
system\globalization\calendar.cs (5)
271CheckAddResult(ticks, MinSupportedDateTime, MaxSupportedDateTime); 599if (time <= MinSupportedDateTime.AddDays(dayOfYear)) 608int dayOfYear = GetDayOfYear(MinSupportedDateTime) - 1; // Make the day of year to be 0-based, so that 1/1 is day 0. 609int dayOfWeekOfFirstOfYear = (int)GetDayOfWeek(MinSupportedDateTime) - dayOfYear % 7; 778return (year >= GetYear(MinSupportedDateTime) && year <= GetYear(MaxSupportedDateTime));
system\globalization\datetimeformatinfo.cs (1)
2308if (year < Calendar.GetYear(Calendar.MinSupportedDateTime) || year > Calendar.GetYear(Calendar.MaxSupportedDateTime)) {
system\globalization\eastasianlunisolarcalendar.cs (4)
157if (ticks < MinSupportedDateTime.Ticks || ticks > MaxSupportedDateTime.Ticks) { 161MinSupportedDateTime, MaxSupportedDateTime)); 439CheckAddResult(dt.Ticks, MinSupportedDateTime, MaxSupportedDateTime); 462CheckAddResult(dt.Ticks, MinSupportedDateTime, MaxSupportedDateTime);
system\globalization\gregoriancalendarhelper.cs (4)
140m_minDate = m_Cal.MinSupportedDateTime; 354if (ticks < m_Cal.MinSupportedDateTime.Ticks || ticks > m_Cal.MaxSupportedDateTime.Ticks) { 360m_Cal.MinSupportedDateTime, 419Calendar.CheckAddResult(ticks, m_Cal.MinSupportedDateTime, m_Cal.MaxSupportedDateTime);
System.Web (1)
UI\WebControls\Calendar.cs (1)
1225minSupportedDate = threadCalendar.MinSupportedDateTime;
System.Windows.Forms (1)
winforms\Managed\System\WinForms\DateTimePicker.cs (1)
812DateTime minSupportedDateTime = CultureInfo.CurrentCulture.Calendar.MinSupportedDateTime;