/// <summary>
 /// Gets formatted score status. Score can be disabled, it can be scheduled to rebuild in the future or its status is one of <see cref="ScoreStatusEnum"/>.
 /// </summary>
 private FormattedText GetFormattedStatus(ScoreInfo info)
 {
     var formatter = new ScoreStatusFormatter(info);
     formatter.RecalculationURL = GetRecalculationURL(info.ScoreID);
     formatter.DisplayTooltips = true;
     return formatter.GetFormattedStatus();
 }
Beispiel #2
0
    /// <summary>
    /// Gets formatted score status. Score can be disabled, it can be scheduled to rebuild in the future or its status is one of <see cref="ScoreStatusEnum"/>.
    /// </summary>
    private FormattedText GetFormattedStatus(ScoreInfo info)
    {
        var formatter = new ScoreStatusFormatter(info);

        formatter.RecalculationURL = GetRecalculationURL(info.ScoreID);
        formatter.DisplayTooltips  = true;
        return(formatter.GetFormattedStatus());
    }
 /// <summary>
 /// Gets formatted score status. Score can be disabled, it can be scheduled to rebuild in the future or its status is one of <see cref="ScoreStatusEnum"/>.
 /// </summary>
 private FormattedText GetFormattedStatus(ScoreInfo info)
 {
     var formatter = new ScoreStatusFormatter(info);
     return formatter.GetFormattedStatus();
 }
    /// <summary>
    /// Gets formatted score status. Score can be disabled, it can be scheduled to rebuild in the future or its status is one of <see cref="ScoreStatusEnum"/>.
    /// </summary>
    private FormattedText GetFormattedStatus(ScoreInfo info)
    {
        var formatter = new ScoreStatusFormatter(info);

        return(formatter.GetFormattedStatus());
    }