src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (11)
143dateTimeNowCache = Local.GetNextNowTransition(utcNow);
235adjustedTime = ConvertTime(dateTime, cachedData.Local, this, TimeZoneInfoOptions.None, cachedData);
272return cachedData.Local.GetUtcOffset(dateTime, flags, cachedData);
290DateTime adjustedTime = ConvertTime(dateTime, cachedData.Local, s_utcTimeZone, flags);
363dateTime.Kind == DateTimeKind.Local ? ConvertTime(dateTime, cachedData.Local, this, flags, cachedData) :
417adjustedTime = ConvertTime(dateTime, cachedData.Local, this, flags, cachedData);
569return ConvertTime(dateTime, cachedData.Local, FindSystemTimeZoneById(destinationTimeZoneId), TimeZoneInfoOptions.None, cachedData);
614TimeZoneInfo sourceTimeZone = dateTime.Kind == DateTimeKind.Utc ? s_utcTimeZone : cachedData.Local;
693return ConvertTime(dateTime, cachedData.Local, s_utcTimeZone, TimeZoneInfoOptions.None, cachedData);
703return ConvertTime(dateTime, cachedData.Local, s_utcTimeZone, flags, cachedData);
831public static TimeZoneInfo Local => s_cachedData.Local;