AilisidanShow.Helper.GetIpHelper.IsFromWeChat C# (CSharp) Метод

IsFromWeChat() публичный статический Метод

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