//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.ComponentModel {
using System.Collections;
///
/// [To be supplied.]
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix")]
public interface IBindingListView : IBindingList {
///
/// [To be supplied.]
///
void ApplySort(ListSortDescriptionCollection sorts);
///
/// [To be supplied.]
///
string Filter {get;set;}
///
/// [To be supplied.]
///
ListSortDescriptionCollection SortDescriptions {get;}
///
/// [To be supplied.]
///
void RemoveFilter();
///
/// [To be supplied.]
///
bool SupportsAdvancedSorting{get;}
///
/// [To be supplied.]
///
bool SupportsFiltering{get;}
}
}