Subtext.Framework.Components.FeedbackItem.GetFeedbackCounts C# (CSharp) Method

GetFeedbackCounts() public static method

Gets the feedback counts for the various top level statuses.
public static GetFeedbackCounts ( ) : FeedbackCounts
return FeedbackCounts
        public static FeedbackCounts GetFeedbackCounts()
        {
            FeedbackCounts counts;
            ObjectProvider.Instance().GetFeedbackCounts(out counts.ApprovedCount, out counts.NeedsModerationCount, out counts.FlaggedAsSpamCount, out counts.DeletedCount);
            return counts;
        }