/// <summary>
        /// Get the queried boost hit percents as a string.
        /// </summary>
        /// <returns>The queried boost hit percent is returned as a string where each % represents the percentage of the queried made for boosted images.</returns>
        public string GetQueryBoostHitPrecentsAsText()
        {
            if (m_rgLabelStats == null)
            {
                return("n/a");
            }

            return(m_rgLabelStats.GetQueryBoostHitPercentsAsText());
        }
Beispiel #2
0
 /// <summary>
 /// Returns the number of times each boosted image vs. non boosted images are hit.
 /// </summary>
 /// <returns>The percentage of non-boosted vs. boosted images is returned as {non-boosted%, boosted%}.</returns>
 public string GetQueryBoostHitPercentsAsText()
 {
     return(m_stat.GetQueryBoostHitPercentsAsText());
 }