System.ComponentModel.IBindingListView
namespace System.ComponentModel
{
public interface IBindingListView : ICollection, IEnumerable, IList, IBindingList
{
string Filter { get; set; }
ListSortDescriptionCollection SortDescriptions { get; }
bool SupportsAdvancedSorting { get; }
bool SupportsFiltering { get; }
void ApplySort(ListSortDescriptionCollection sorts);
void RemoveFilter();
}
}