1 override of IsValidDay
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Globalization\GregorianCalendar.cs (1)
271
internal override bool
IsValidDay
(int year, int month, int day, int era)
8 references to IsValidDay
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Globalization\DateTimeParse.cs (8)
1521
if (result.calendar.
IsValidDay
(year, month, day, result.era))
1718
if (result.calendar.
IsValidDay
(result.Year, result.Month, raw.GetNumber(0), result.era))
1802
if (TryAdjustYear(ref result, n2, out year) && result.calendar.
IsValidDay
(year, raw.month, n1, result.era))
1808
else if (TryAdjustYear(ref result, n1, out year) && result.calendar.
IsValidDay
(year, raw.month, n2, result.era))
1817
if (TryAdjustYear(ref result, n1, out year) && result.calendar.
IsValidDay
(year, raw.month, n2, result.era))
1823
else if (TryAdjustYear(ref result, n2, out year) && result.calendar.
IsValidDay
(year, raw.month, n1, result.era))
1832
if (TryAdjustYear(ref result, n2, out year) && result.calendar.
IsValidDay
(year, raw.month, n1, result.era))
1838
else if (TryAdjustYear(ref result, n1, out year) && result.calendar.
IsValidDay
(year, raw.month, n2, result.era))