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