UmAlQuraCalendar.IsLeapMonth Method (Int32, Int32, Int32)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Updated: October 2010
Determines whether the specified month in the specified year and era is a leap month.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overrides Function IsLeapMonth ( _
year As Integer, _
month As Integer, _
era As Integer _
) As Boolean
public override bool IsLeapMonth(
int year,
int month,
int era
)
Parameters
- year
Type: System.Int32
A year.
- month
Type: System.Int32
An integer from 1 through 12 that represents a month.
- era
Type: System.Int32
An era. Specify UmAlQuraCalendar.Eras[UmAlQuraCalendar.CurrentEra].
Return Value
Type: System.Boolean
Always false, because the UmAlQuraCalendar class does not support leap months.
Exceptions
Exception | Condition |
---|---|
ArgumentOutOfRangeException | year, month, or era is outside the range supported by the UmAlQuraCalendar class. |
Remarks
A leap month is an entire month that occurs only in a leap year.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Change History
Date |
History |
Reason |
---|---|---|
October 2010 |
Corrected information about the era parameter and removed the example. |
Customer feedback. |