コード例 #1
0
        /// <summary>
        /// Updates the steam user id.
        /// </summary>
        /// <param name="json">The json object.</param>
        /// <returns></returns>
        public bool UpdateSteamUserId(UpdateSteamUserIdParameter json)
        {
            if (json == null)
            {
                throw new ArgumentNullException("json");
            }

            _service.UpdateSteamUserId(json.FacebookUserId, json.SteamUserId);

            return(true);
        }
 public bool UpdateSteamUserId(UpdateSteamUserIdParameter json)
 {
     return(true);
 }