14 overrides of MaxSupportedDateTime
mscorlib (14)
system\globalization\chineselunisolarcalendar.cs (1)
58public override DateTime MaxSupportedDateTime {
system\globalization\gregoriancalendar.cs (1)
91public override DateTime MaxSupportedDateTime
system\globalization\hebrewcalendar.cs (1)
313public override DateTime MaxSupportedDateTime
system\globalization\hijricalendar.cs (1)
101public override DateTime MaxSupportedDateTime
system\globalization\japanesecalendar.cs (1)
61public override DateTime MaxSupportedDateTime
system\globalization\japaneselunisolarcalendar.cs (1)
57public override DateTime MaxSupportedDateTime
system\globalization\juliancalendar.cs (1)
65public override DateTime MaxSupportedDateTime
system\globalization\koreancalendar.cs (1)
63public override DateTime MaxSupportedDateTime
system\globalization\koreanlunisolarcalendar.cs (1)
58public override DateTime MaxSupportedDateTime {
system\globalization\Persiancalendar.cs (1)
80public override DateTime MaxSupportedDateTime
system\globalization\taiwancalendar.cs (1)
76public override DateTime MaxSupportedDateTime
system\globalization\taiwanlunisolarcalendar.cs (1)
63public override DateTime MaxSupportedDateTime {
system\globalization\thaibuddhistcalendar.cs (1)
54public override DateTime MaxSupportedDateTime
system\globalization\umalquracalendar.cs (1)
288public override DateTime MaxSupportedDateTime
12 references to MaxSupportedDateTime
mscorlib (10)
system\globalization\calendar.cs (2)
271CheckAddResult(ticks, MinSupportedDateTime, MaxSupportedDateTime); 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 (3)
354if (ticks < m_Cal.MinSupportedDateTime.Ticks || ticks > m_Cal.MaxSupportedDateTime.Ticks) { 361m_Cal.MaxSupportedDateTime)); 419Calendar.CheckAddResult(ticks, m_Cal.MinSupportedDateTime, m_Cal.MaxSupportedDateTime);
System.Web (1)
UI\WebControls\Calendar.cs (1)
1226maxSupportedDate = threadCalendar.MaxSupportedDateTime;
System.Windows.Forms (1)
winforms\Managed\System\WinForms\DateTimePicker.cs (1)
752DateTime maxSupportedDateTime = CultureInfo.CurrentCulture.Calendar.MaxSupportedDateTime;