5 implementations of IsSorted
System.ComponentModel.TypeConverter (1)
System\ComponentModel\BindingList.cs (1)
397bool IBindingList.IsSorted => IsSortedCore;
System.Data.Common (3)
System\Data\DataView.cs (1)
949bool IBindingList.IsSorted => Sort.Length != 0;
System\Data\DataViewManager.cs (1)
216bool IBindingList.IsSorted
System\Data\LinqDataView.cs (1)
277bool IBindingList.IsSorted
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
1691public virtual bool IsSorted
6 references to IsSorted
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridView.DataConnection.cs (3)
302if (CurrencyManager?.List is not IBindingList { SupportsSorting: true, IsSorted: true }) 737if (CurrencyManager.List is IBindingList ibl && ibl.SupportsSorting && ibl.IsSorted) 974if (CurrencyManager?.List is not IBindingList { SupportsSorting: true, IsSorted: true } ibl)
System\Windows\Forms\DataBinding\BindingSource.cs (2)
291else if (List is IBindingList ibl && ibl.SupportsSorting && ibl.IsSorted) 1693get => _state.HasFlag(BindingSourceStates.IsBindingList) && ((IBindingList)List).IsSorted;
System.Windows.Forms.Tests (1)
System\Windows\Forms\BindingSourceTests.cs (1)
371.Setup(p => p.IsSorted)