File: System\ComponentModel\IBindingListView.cs
Web Access
Project: src\src\libraries\System.ComponentModel.TypeConverter\src\System.ComponentModel.TypeConverter.csproj (System.ComponentModel.TypeConverter)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Diagnostics.CodeAnalysis;
 
namespace System.ComponentModel
{
    public interface IBindingListView : IBindingList
    {
        void ApplySort(ListSortDescriptionCollection sorts);
 
        string? Filter { get; [RequiresUnreferencedCode("Members of types used in the filter expression might be trimmed.")] set; }
 
        ListSortDescriptionCollection SortDescriptions { get; }
 
        void RemoveFilter();
 
        bool SupportsAdvancedSorting { get; }
        bool SupportsFiltering { get; }
    }
}