src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (11)
143dateTimeNowCache = Local.GetNextNowTransition(utcNow);
246adjustedTime = ConvertTime(dateTime, cachedData.Local, this, TimeZoneInfoOptions.None, cachedData);
283return cachedData.Local.GetUtcOffset(dateTime, flags, cachedData);
301DateTime adjustedTime = ConvertTime(dateTime, cachedData.Local, s_utcTimeZone, flags);
374dateTime.Kind == DateTimeKind.Local ? ConvertTime(dateTime, cachedData.Local, this, flags, cachedData) :
428adjustedTime = ConvertTime(dateTime, cachedData.Local, this, flags, cachedData);
580return ConvertTime(dateTime, cachedData.Local, FindSystemTimeZoneById(destinationTimeZoneId), TimeZoneInfoOptions.None, cachedData);
625TimeZoneInfo sourceTimeZone = dateTime.Kind == DateTimeKind.Utc ? s_utcTimeZone : cachedData.Local;
704return ConvertTime(dateTime, cachedData.Local, s_utcTimeZone, TimeZoneInfoOptions.None, cachedData);
714return ConvertTime(dateTime, cachedData.Local, s_utcTimeZone, flags, cachedData);
839public static TimeZoneInfo Local => s_cachedData.Local;