using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Globalization { /// Represents the Korean calendar. // Token: 0x020002F3 RID: 755 [Token(Token = "0x20002F3")] [ComVisible(true)] [Serializable] public class KoreanCalendar : Calendar { /// Gets the earliest date and time supported by the class. /// The earliest date and time supported by the class, which is equivalent to the first moment of January 1, 0001 C.E. in the Gregorian calendar. // Token: 0x170003B3 RID: 947 // (get) Token: 0x06001CA8 RID: 7336 RVA: 0x000136E0 File Offset: 0x000118E0 [Token(Token = "0x170003B3")] [ComVisible(false)] public override DateTime MinSupportedDateTime { [Token(Token = "0x6001CA8")] [Address(RVA = "0xE34470", Offset = "0xE33470", VA = "0x180E34470", Slot = "5")] get { return default(DateTime); } } /// Gets the latest date and time supported by the class. /// The latest date and time supported by the class, which is equivalent to the last moment of December 31, 9999 C.E. in the Gregorian calendar. // Token: 0x170003B4 RID: 948 // (get) Token: 0x06001CA9 RID: 7337 RVA: 0x000136F8 File Offset: 0x000118F8 [Token(Token = "0x170003B4")] [ComVisible(false)] public override DateTime MaxSupportedDateTime { [Token(Token = "0x6001CA9")] [Address(RVA = "0xE34410", Offset = "0xE33410", VA = "0x180E34410", Slot = "6")] get { return default(DateTime); } } /// Gets a value indicating whether the current calendar is solar-based, lunar-based, or a combination of both. /// Always returns . // Token: 0x170003B5 RID: 949 // (get) Token: 0x06001CAA RID: 7338 RVA: 0x00013710 File Offset: 0x00011910 [Token(Token = "0x170003B5")] [ComVisible(false)] public override CalendarAlgorithmType AlgorithmType { [Token(Token = "0x6001CAA")] [Address(RVA = "0x4E8690", Offset = "0x4E7690", VA = "0x1804E8690", Slot = "9")] get { return CalendarAlgorithmType.Unknown; } } /// Initializes a new instance of the class. /// Unable to initialize a object because of missing culture information. // Token: 0x06001CAB RID: 7339 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001CAB")] [Address(RVA = "0xE342E0", Offset = "0xE332E0", VA = "0x180E342E0")] public KoreanCalendar() { } // Token: 0x170003B6 RID: 950 // (get) Token: 0x06001CAC RID: 7340 RVA: 0x00013728 File Offset: 0x00011928 [Token(Token = "0x170003B6")] internal override int ID { [Token(Token = "0x6001CAC")] [Address(RVA = "0x6271D0", Offset = "0x6261D0", VA = "0x1806271D0", Slot = "7")] get { return 0; } } /// Returns a that is the specified number of months away from the specified . /// The to which to add months. /// The number of months to add. /// The that results from adding the specified number of months to the specified . /// /// is less than -120000. /// -or- /// is greater than 120000. // Token: 0x06001CAD RID: 7341 RVA: 0x00013740 File Offset: 0x00011940 [Token(Token = "0x6001CAD")] [Address(RVA = "0xE30A10", Offset = "0xE2FA10", VA = "0x180E30A10", Slot = "12")] public override DateTime AddMonths(DateTime time, int months) { return default(DateTime); } /// Returns a that is the specified number of years away from the specified . /// The to which to add years. /// The number of years to add. /// The that results from adding the specified number of years to the specified . /// /// or is out of range. // Token: 0x06001CAE RID: 7342 RVA: 0x00013758 File Offset: 0x00011958 [Token(Token = "0x6001CAE")] [Address(RVA = "0xE30A30", Offset = "0xE2FA30", VA = "0x180E30A30", Slot = "13")] public override DateTime AddYears(DateTime time, int years) { return default(DateTime); } /// Returns the number of days in the specified month in the specified year in the specified era. /// An integer that represents the year. /// An integer from 1 to 12 that represents the month. /// An integer that represents the era. /// The number of days in the specified month in the specified year in the specified era. /// /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. // Token: 0x06001CAF RID: 7343 RVA: 0x00013770 File Offset: 0x00011970 [Token(Token = "0x6001CAF")] [Address(RVA = "0xE30D90", Offset = "0xE2FD90", VA = "0x180E30D90", Slot = "18")] public override int GetDaysInMonth(int year, int month, int era) { return 0; } /// Returns the number of days in the specified year in the specified era. /// An integer that represents the year. /// An integer that represents the era. /// The number of days in the specified year in the specified era. /// /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. // Token: 0x06001CB0 RID: 7344 RVA: 0x00013788 File Offset: 0x00011988 [Token(Token = "0x6001CB0")] [Address(RVA = "0xE30DC0", Offset = "0xE2FDC0", VA = "0x180E30DC0", Slot = "19")] public override int GetDaysInYear(int year, int era) { return 0; } /// Returns the day of the month in the specified . /// The to read. /// An integer from 1 to 31 that represents the day of the month in the specified . // Token: 0x06001CB1 RID: 7345 RVA: 0x000137A0 File Offset: 0x000119A0 [Token(Token = "0x6001CB1")] [Address(RVA = "0xE30CD0", Offset = "0xE2FCD0", VA = "0x180E30CD0", Slot = "14")] public override int GetDayOfMonth(DateTime time) { return 0; } /// Returns the day of the week in the specified . /// The to read. /// A value that represents the day of the week in the specified . // Token: 0x06001CB2 RID: 7346 RVA: 0x000137B8 File Offset: 0x000119B8 [Token(Token = "0x6001CB2")] [Address(RVA = "0xE30D20", Offset = "0xE2FD20", VA = "0x180E30D20", Slot = "15")] public override DayOfWeek GetDayOfWeek(DateTime time) { return DayOfWeek.Sunday; } /// Returns the day of the year in the specified . /// The to read. /// An integer from 1 to 366 that represents the day of the year in the specified . // Token: 0x06001CB3 RID: 7347 RVA: 0x000137D0 File Offset: 0x000119D0 [Token(Token = "0x6001CB3")] [Address(RVA = "0xE30D40", Offset = "0xE2FD40", VA = "0x180E30D40", Slot = "16")] public override int GetDayOfYear(DateTime time) { return 0; } /// Returns the number of months in the specified year in the specified era. /// An integer that represents the year. /// An integer that represents the era. /// The number of months in the specified year in the specified era. /// /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. // Token: 0x06001CB4 RID: 7348 RVA: 0x000137E8 File Offset: 0x000119E8 [Token(Token = "0x6001CB4")] [Address(RVA = "0xE31760", Offset = "0xE30760", VA = "0x180E31760", Slot = "23")] public override int GetMonthsInYear(int year, int era) { return 0; } /// Returns the week of the year that includes the date in the specified . /// The to read. /// One of the values that defines a calendar week. /// One of the values that represents the first day of the week. /// A 1-based integer that represents the week of the year that includes the date in the parameter. /// /// or is outside the range supported by the calendar. /// -or- /// is not a valid value. // Token: 0x06001CB5 RID: 7349 RVA: 0x00013800 File Offset: 0x00011A00 [Token(Token = "0x6001CB5")] [Address(RVA = "0xE31790", Offset = "0xE30790", VA = "0x180E31790", Slot = "25")] [ComVisible(false)] public override int GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) { return 0; } /// Returns the era in the specified . /// The to read. /// An integer that represents the era in the specified . // Token: 0x06001CB6 RID: 7350 RVA: 0x00013818 File Offset: 0x00011A18 [Token(Token = "0x6001CB6")] [Address(RVA = "0xE316C0", Offset = "0xE306C0", VA = "0x180E316C0", Slot = "20")] public override int GetEra(DateTime time) { return 0; } /// Returns the month in the specified . /// The to read. /// An integer from 1 to 12 that represents the month in the specified . // Token: 0x06001CB7 RID: 7351 RVA: 0x00013830 File Offset: 0x00011A30 [Token(Token = "0x6001CB7")] [Address(RVA = "0xE31710", Offset = "0xE30710", VA = "0x180E31710", Slot = "22")] public override int GetMonth(DateTime time) { return 0; } /// Returns the year in the specified . /// The to read. /// An integer that represents the year in the specified . // Token: 0x06001CB8 RID: 7352 RVA: 0x00013848 File Offset: 0x00011A48 [Token(Token = "0x6001CB8")] [Address(RVA = "0xE317C0", Offset = "0xE307C0", VA = "0x180E317C0", Slot = "26")] public override int GetYear(DateTime time) { return 0; } /// Determines whether the specified date in the specified era is a leap day. /// An integer that represents the year. /// An integer from 1 to 12 that represents the month. /// An integer from 1 to 31 that represents the day. /// An integer that represents the era. /// /// if the specified day is a leap day; otherwise, . /// /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. // Token: 0x06001CB9 RID: 7353 RVA: 0x00013860 File Offset: 0x00011A60 [Token(Token = "0x6001CB9")] [Address(RVA = "0xE317E0", Offset = "0xE307E0", VA = "0x180E317E0", Slot = "27")] public override bool IsLeapDay(int year, int month, int day, int era) { return default(bool); } /// Determines whether the specified year in the specified era is a leap year. /// An integer that represents the year. /// An integer that represents the era. /// /// if the specified year is a leap year; otherwise, . /// /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. // Token: 0x06001CBA RID: 7354 RVA: 0x00013878 File Offset: 0x00011A78 [Token(Token = "0x6001CBA")] [Address(RVA = "0xE31840", Offset = "0xE30840", VA = "0x180E31840", Slot = "31")] public override bool IsLeapYear(int year, int era) { return default(bool); } /// Calculates the leap month for a specified year and era. /// A year. /// An era. /// The return value is always 0 because the class does not support the notion of a leap month. // Token: 0x06001CBB RID: 7355 RVA: 0x00013890 File Offset: 0x00011A90 [Token(Token = "0x6001CBB")] [Address(RVA = "0xE316E0", Offset = "0xE306E0", VA = "0x180E316E0", Slot = "29")] [ComVisible(false)] public override int GetLeapMonth(int year, int era) { return 0; } /// Determines whether the specified month in the specified year in the specified era is a leap month. /// An integer that represents the year. /// An integer from 1 to 12 that represents the month. /// An integer that represents the era. /// This method always returns , unless overridden by a derived class. /// /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. // Token: 0x06001CBC RID: 7356 RVA: 0x000138A8 File Offset: 0x00011AA8 [Token(Token = "0x6001CBC")] [Address(RVA = "0xE31810", Offset = "0xE30810", VA = "0x180E31810", Slot = "28")] public override bool IsLeapMonth(int year, int month, int era) { return default(bool); } /// Returns a that is set to the specified date and time in the specified era. /// An integer that represents the year. /// An integer from 1 to 12 that represents the month. /// An integer from 1 to 31 that represents the day. /// An integer from 0 to 23 that represents the hour. /// An integer from 0 to 59 that represents the minute. /// An integer from 0 to 59 that represents the second. /// An integer from 0 to 999 that represents the millisecond. /// An integer that represents the era. /// The that is set to the specified date and time in the current era. /// /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. /// -or- /// is outside the range supported by the calendar. /// -or- /// is less than zero or greater than 23. /// -or- /// is less than zero or greater than 59. /// -or- /// is less than zero or greater than 59. /// -or- /// is less than zero or greater than 999. /// -or- /// is outside the range supported by the calendar. // Token: 0x06001CBD RID: 7357 RVA: 0x000138C0 File Offset: 0x00011AC0 [Token(Token = "0x6001CBD")] [Address(RVA = "0xE31990", Offset = "0xE30990", VA = "0x180E31990", Slot = "33")] public override DateTime ToDateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int era) { return default(DateTime); } /// Gets the list of eras in the . /// An array of integers that represents the eras in the . // Token: 0x170003B7 RID: 951 // (get) Token: 0x06001CBE RID: 7358 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x170003B7")] public override int[] Eras { [Token(Token = "0x6001CBE")] [Address(RVA = "0xE31CD0", Offset = "0xE30CD0", VA = "0x180E31CD0", Slot = "21")] get { return null; } } /// Gets or sets the last year of a 100-year range that can be represented by a 2-digit year. /// The last year of a 100-year range that can be represented by a 2-digit year. /// The value specified in a set operation is less than 99. /// -or- /// The value specified in a set operation is greater than . /// In a set operation, the current instance is read-only. // Token: 0x170003B8 RID: 952 // (get) Token: 0x06001CBF RID: 7359 RVA: 0x000138D8 File Offset: 0x00011AD8 // (set) Token: 0x06001CC0 RID: 7360 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170003B8")] public override int TwoDigitYearMax { [Token(Token = "0x6001CBF")] [Address(RVA = "0xE344D0", Offset = "0xE334D0", VA = "0x180E344D0", Slot = "38")] get { return 0; } [Token(Token = "0x6001CC0")] [Address(RVA = "0xE34510", Offset = "0xE33510", VA = "0x180E34510", Slot = "39")] set { } } /// Converts the specified year to a four-digit year by using the property to determine the appropriate century. /// A two-digit or four-digit integer that represents the year to convert. /// An integer that contains the four-digit representation of . /// /// is outside the range supported by the calendar. // Token: 0x06001CC1 RID: 7361 RVA: 0x000138F0 File Offset: 0x00011AF0 [Token(Token = "0x6001CC1")] [Address(RVA = "0xE34100", Offset = "0xE33100", VA = "0x180E34100", Slot = "40")] public override int ToFourDigitYear(int year) { return 0; } /// Represents the current era. This field is constant. // Token: 0x04000FBB RID: 4027 [Token(Token = "0x4000FBB")] public const int KoreanEra = 1; // Token: 0x04000FBC RID: 4028 [Token(Token = "0x4000FBC")] internal static EraInfo[] koreanEraInfo; // Token: 0x04000FBD RID: 4029 [global::Cpp2IlInjected.FieldOffset(Offset = "0x20")] [Token(Token = "0x4000FBD")] internal GregorianCalendarHelper helper; // Token: 0x04000FBE RID: 4030 [Token(Token = "0x4000FBE")] private const int DEFAULT_TWO_DIGIT_YEAR_MAX = 4362; } }