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