<PackageReference Include="NETStandard.Library" Version="2.0.2" />

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(); } } namespace System.ComponentModel { public class Win32Exception : ExternalException, ISerializable { public int NativeErrorCode { get; } public Win32Exception(); public Win32Exception(int error); public Win32Exception(int error, string message); protected Win32Exception(SerializationInfo info, StreamingContext context); public Win32Exception(string message); public Win32Exception(string message, Exception innerException); } }