當前位置: 首頁>>代碼示例>>C#>>正文


C# IPAddress.GetCountryCode方法代碼示例

本文整理匯總了C#中System.Net.IPAddress.GetCountryCode方法的典型用法代碼示例。如果您正苦於以下問題:C# IPAddress.GetCountryCode方法的具體用法?C# IPAddress.GetCountryCode怎麽用?C# IPAddress.GetCountryCode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Net.IPAddress的用法示例。


在下文中一共展示了IPAddress.GetCountryCode方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Login

        public Result<customer_account> Login(IDbConnection db, string userName, string pwd, IPAddress ip)
        {
            string userNameLC = userName.ToLower();

            var loginInfo = db.Query<customer_login_password>("SELECT * FROM customer_login_password WHERE lower(username)[email protected] OR lower(email)[email protected] ", new { userName = userNameLC }).FirstOrDefault();

            if (loginInfo == null || string.Compare(loginInfo.unhashed_password, pwd, StringComparison.OrdinalIgnoreCase) != 0)
            {
                return Result<customer_account>.Null(ErrorCodes.InvalidUserNameOrPassword);
            }

            var user = GetCustomerById(db, loginInfo.customer_account_id);
            int id = user.Data.id;

            // Change country code only IF the database has not store this value before //
            if (string.IsNullOrEmpty(user.Data.country_code) || string.IsNullOrEmpty(user.Data.country_name))
            {
                ip.GetCountryCode(c => user.Data.country_code = c, n => user.Data.country_name = n);
            }
          

            // TODO: Update
            user.Data.last_login_at = DateTime.UtcNow;
            db.Execute("UPDATE customer_account SET [email protected]_login_at, [email protected]_code, [email protected]_name", user.Data);

            return user;
        }
開發者ID:vietplayfuri,項目名稱:Asp_Master,代碼行數:27,代碼來源:Login-Query.cs

示例2: getDownloadLinksForCurrentUser

        public static JObject getDownloadLinksForCurrentUser(Game game, ApplicationUser currentUser, IPAddress ip)
        {
            var countryCode = String.Empty;
            if (currentUser != null)
            {
                countryCode = currentUser.country_code;
            }
            else
            {
                string country_code = null;
                string country_name = null;
                if (ip.GetCountryCode(c => country_code = c, n => country_name = n))
                {
                    countryCode = country_code;
                }
            }

            var downloadLink = JObject.Parse(game.download_links);
            var jsonLink = JObject.Parse(game.download_links);
            if (Local.NO_GAME_STORES_COUNTRY_CODES.Contains(countryCode.ToLower()))
            {
                if (jsonLink["google"] != null)
                {
                    downloadLink.Remove("google");
                }
            }
            else
            {
                if (game.id != 21 && game.id != 24)
                {
                    if (jsonLink["apk"] != null)
                    {
                        downloadLink.Remove("apk");
                    }
                }
            }
            return downloadLink;
        }
開發者ID:vietplayfuri,項目名稱:Asp_Master,代碼行數:38,代碼來源:GameHelper.cs


注:本文中的System.Net.IPAddress.GetCountryCode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。