AilisidanShow.Helper.GetIpHelper.IsFromWeChat C# (CSharp) Method

IsFromWeChat() public static method

是否来自微浏览器
public static IsFromWeChat ( ) : bool
return bool
        public static bool IsFromWeChat()
        {
            var userAgent = HttpContext.Current.Request.ServerVariables["HTTP_USER_AGENT"];
            if (userAgent.Contains("MicroMessenger"))
            {
                return true;
            }
            return false;
        }