ArcGISPortalViewer.Controls.IdentifyResultsControl.UpdateCount C# (CSharp) Method

UpdateCount() private method

private UpdateCount ( ) : void
return void
        private void UpdateCount()
        {
            Count = ItemsSource != null ? ItemsSource.Count() : 0;
            FeturesFoundTextBlock.Text = Count == 1 ? "1 feature found" : string.Format("{0} features found", Count);
        }