C#中获取TimeZoneInfo

黄舟
黄舟 原创
2017-03-01 10:43:50 1651浏览

C#中获取TimeZoneInfo

public TimeZoneInfo TimeZoneInfo
        {
            get
            {
                var timeZoneInfoString = _user.TimeZoneInfoString;
                if (!string.IsNullOrEmpty(timeZoneInfoString))
                {
                    try
                    {
                        return TimeZoneInfo.FindSystemTimeZoneById(timeZoneInfoString);
                    }
                    catch (TimeZoneNotFoundException exception)
                    {
                        LogManager.GetLogger(GetType()).Error(exception);
                    }
                    catch (Exception exception)
                    {
                        LogManager.GetLogger(GetType()).Error(exception);
                    }

                    return TimeZoneInfo.Local;
                }
                else
                {
                    LogManager.GetLogger(GetType()).ErrorFormat("timeZoneInfoString for user {0} is empty", HttpContext.Current.User.Identity.Name);
                    return TimeZoneInfo.Local;
                }
            }
        }


其中,_user.TimeZoneInfoString会存在数据库中

以上就是C#中获取TimeZoneInfo的内容,更多相关内容请关注PHP中文网(m.sbmmt.com)!


声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。