BF2Statistics.Gamespy.GpcmClient.UpdateUser C# (CSharp) Method

UpdateUser() private method

Updates the Users Country code when sent by the client
private UpdateUser ( string>.Dictionary Recv ) : void
Recv string>.Dictionary
return void
        private void UpdateUser(Dictionary<string, string> Recv)
        {
            // Set clients country code
            try
            {
                using (GamespyDatabase Conn = new GamespyDatabase())
                    Conn.UpdateUser(PlayerNick, Recv["countrycode"]);
            }
            catch
            {
                //Dispose();
            }
        }