/// <summary>
        /// Get All Values have This property Name
        /// </summary>
        /// <param name="propertyName">The name of a Property You Want To Find</param>
        public static List <object> GetPropertyValues(string propertyName)
        {
            if (!IsAvailable)
            {
                throw new GameServiceException("GsLiveRealtime is Not Available");
            }

            if (!FiroozehGameService.Core.GameService.GSLive.IsRealTimeAvailable())
            {
                throw new GameServiceException("RealTime is Not Available");
            }

            return(_propertyHandler.GetPropertyValues(propertyName));
        }