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

            return(m_rgLabelStats.GetQueryLabelHitPercentsAsText());
        }
Example #2
0
 /// <summary>
 /// Returns the number of times each label is hit.
 /// </summary>
 /// <returns>The percentage of times each label hit occurs is returned in label order (e.g. label 0%, label 1%,... label n%).</returns>
 public string GetQueryLabelHitPercentsAsText()
 {
     return(m_stat.GetQueryLabelHitPercentsAsText());
 }