CalDavSynchronizer.Implementation.TimeZones.GlobalTimeZoneCache.AddTz C# (CSharp) Метод

AddTz() приватный Метод

private AddTz ( string tzId, ITimeZone timeZone, bool includeHistoricalData ) : void
tzId string
timeZone ITimeZone
includeHistoricalData bool
Результат void
        private void AddTz(string tzId, ITimeZone timeZone, bool includeHistoricalData)
        {
            if (includeHistoricalData)
            {
                _tzHistoricalMap.Add(tzId, timeZone);
            }
            else
            {
                _tzOutlookMap.Add(tzId, timeZone);
            }
        }