Home
last modified time | relevance | path

Searched refs:IBindingList (Results 1 – 25 of 108) sorted by relevance

12345

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/
H A DBindingList.cs276 #region IBindingList interface
287 public T AddNew() => (T)((this as IBindingList).AddNew()); in AddNew()
289 object IBindingList.AddNew() in IBindingList.AddNew()
361 bool IBindingList.AllowNew => AllowNew;
376 bool IBindingList.AllowEdit => AllowEdit;
391 bool IBindingList.AllowRemove => AllowRemove;
401 bool IBindingList.SupportsSorting => SupportsSortingCore;
405 bool IBindingList.IsSorted => IsSortedCore;
427 void IBindingList.RemoveSort() => RemoveSortCore(); in IBindingList.RemoveSort()
441 void IBindingList.AddIndex(PropertyDescriptor prop) in IBindingList.AddIndex()
[all …]
H A DIBindingListView.cs13 public interface IBindingListView : IBindingList
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Objects/
H A DObjectView.cs154 #region IBindingList implementation
156 bool IBindingList.AllowNew
161 bool IBindingList.AllowEdit
166 object IBindingList.AddNew() in IBindingList.AddNew()
189 bool IBindingList.AllowRemove
194 bool IBindingList.SupportsChangeNotification
199 bool IBindingList.SupportsSearching
204 bool IBindingList.SupportsSorting
209 bool IBindingList.IsSorted
214 PropertyDescriptor IBindingList.SortProperty
[all …]
H A DObjectViewFactory.cs76 …internal static IBindingList CreateViewForQuery<TElement>(TypeUsage elementEdmTypeUsage, IEnumerab… in CreateViewForQuery()
94 IBindingList objectView; in CreateViewForQuery()
157 …internal static IBindingList CreateViewForEntityCollection<TElement>(EntityType entityType, Entity…
184 IBindingList objectView;
231 …private static IBindingList CreateObjectView(Type clrElementType, Type objectViewDataType, object … in CreateObjectView()
246 return (IBindingList)viewConstructor.Invoke(new object[] { viewData, eventDataSource }); in CreateObjectView()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/componentmodel/
H A DBindingList.cs295 #region IBindingList interface
311 object IBindingList.AddNew() { in IBindingList.AddNew()
383 /* private */ bool IBindingList.AllowNew {
404 /* private */ bool IBindingList.AllowEdit {
425 /* private */ bool IBindingList.AllowRemove {
431 bool IBindingList.SupportsChangeNotification {
443 bool IBindingList.SupportsSearching {
455 bool IBindingList.SupportsSorting {
467 bool IBindingList.IsSorted {
479 PropertyDescriptor IBindingList.SortProperty {
[all …]
H A DIBindingListView.cs16 public interface IBindingListView : IBindingList {
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/
H A DDataViewManager.cs196 bool IBindingList.AllowNew => false;
197 object IBindingList.AddNew() in IBindingList.AddNew()
202 bool IBindingList.AllowEdit => false;
204 bool IBindingList.AllowRemove => false;
206 bool IBindingList.SupportsChangeNotification => true;
208 bool IBindingList.SupportsSearching => false;
210 bool IBindingList.SupportsSorting => false;
212 bool IBindingList.IsSorted
217 PropertyDescriptor IBindingList.SortProperty
222 ListSortDirection IBindingList.SortDirection
[all …]
H A DDataView.cs906 #region IBindingList implementation
908 bool IBindingList.AllowNew => AllowNew;
909 object IBindingList.AddNew() => AddNew(); in IBindingList.AddNew()
910 bool IBindingList.AllowEdit => AllowEdit;
911 bool IBindingList.AllowRemove => AllowDelete;
913 bool IBindingList.SupportsChangeNotification => true;
914 bool IBindingList.SupportsSearching => true;
915 bool IBindingList.SupportsSorting => true;
916 bool IBindingList.IsSorted => Sort.Length != 0;
956 #region IBindingList implementation
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/
H A DDataViewManager.cs208 bool IBindingList.AllowNew {
213 object IBindingList.AddNew() { in IBindingList.AddNew()
217 bool IBindingList.AllowEdit {
223 bool IBindingList.AllowRemove {
229 bool IBindingList.SupportsChangeNotification {
235 bool IBindingList.SupportsSearching {
241 bool IBindingList.SupportsSorting {
247 bool IBindingList.IsSorted {
253 PropertyDescriptor IBindingList.SortProperty {
259 ListSortDirection IBindingList.SortDirection {
[all …]
H A DDataView.cs984 #region IBindingList implementation
986 bool IBindingList.AllowNew {
989 object IBindingList.AddNew() { in IBindingList.AddNew()
993 bool IBindingList.AllowEdit {
997 bool IBindingList.AllowRemove {
1001 bool IBindingList.SupportsChangeNotification {
1005 bool IBindingList.SupportsSearching {
1009 bool IBindingList.SupportsSorting {
1013 bool IBindingList.IsSorted {
1075 #region IBindingList implementation
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/System.Windows.Forms/
H A DBindingSource.cs177 if (list is IBindingList) in SetList()
241 if (list is IBindingList)
253 if (list is IBindingList)
291 if (list is IBindingList)
392 get { return (list is IBindingList) && ((IBindingList)list).IsSorted; }
535 if (list is IBindingList)
546 if (list is IBindingList)
571 return (list is IBindingList) && ((IBindingList)list).SupportsSearching;
577 get { return (list is IBindingList) && ((IBindingList)list).SupportsSorting; }
712 IBindingList iblist = (IBindingList)list; in ApplySort()
[all …]
H A DCurrencyManager.cs97 if (this.data_source is IBindingList) in SetDataSource()
98 … ((IBindingList)this.data_source).ListChanged -= new ListChangedEventHandler (ListChangedHandler); in SetDataSource()
108 if (this.data_source is IBindingList) in SetDataSource()
109 … ((IBindingList)this.data_source).ListChanged += new ListChangedEventHandler (ListChangedHandler); in SetDataSource()
149 if (list is IBindingList)
150 return ((IBindingList)list).AllowNew;
164 if (list is IBindingList)
165 return ((IBindingList)list).AllowRemove;
173 if (list is IBindingList)
174 return ((IBindingList)list).AllowEdit;
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data/Test/System.Data/
H A DDataViewTest_IBindingList.cs62 IBindingList ib = (IBindingList) dv; in PropertyTest()
78 IBindingList ib = (IBindingList) dv; in AddNewTest()
116 IBindingList ib = (IBindingList) dv; in SortTest()
174 IBindingList ib = (IBindingList) dv; in FindTest()
210 IBindingList ib = (IBindingList) dv; in TestIfCorrectIndexIsUsed()
/dports/lang/mono/mono-5.10.1.57/external/Newtonsoft.Json/Src/Newtonsoft.Json/Linq/
H A DJContainer.cs47 , ITypedList, IBindingList
901 #region IBindingList Members
908 object IBindingList.AddNew() in IBindingList.AddNew()
925 bool IBindingList.AllowEdit
930 bool IBindingList.AllowNew
935 bool IBindingList.AllowRemove
950 bool IBindingList.IsSorted
959 void IBindingList.RemoveSort() in IBindingList.RemoveSort()
964 ListSortDirection IBindingList.SortDirection
979 bool IBindingList.SupportsSearching
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/Newtonsoft.Json/Src/Newtonsoft.Json/Linq/
H A DJContainer.cs49 , ITypedList, IBindingList
898 #region IBindingList Members
905 object IBindingList.AddNew() in IBindingList.AddNew()
922 bool IBindingList.AllowEdit
927 bool IBindingList.AllowNew
932 bool IBindingList.AllowRemove
947 bool IBindingList.IsSorted
956 void IBindingList.RemoveSort() in IBindingList.RemoveSort()
961 ListSortDirection IBindingList.SortDirection
976 bool IBindingList.SupportsSearching
[all …]
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/Linq/
H A DJContainer.cs50 , ITypedList, IBindingList
1054 #region IBindingList Members
1060 object IBindingList.AddNew() in IBindingList.AddNew()
1081 bool IBindingList.AllowEdit
1086 bool IBindingList.AllowNew
1091 bool IBindingList.AllowRemove
1106 bool IBindingList.IsSorted
1115 void IBindingList.RemoveSort() in IBindingList.RemoveSort()
1120 ListSortDirection IBindingList.SortDirection
1135 bool IBindingList.SupportsSearching
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.DataSetExtensions/System/Data/
H A DLinqDataView.cs24 internal class LinqDataView : DataView, IBindingList, IBindingListView
249 #region IBindingList
254 void IBindingList.RemoveSort() in IBindingList.RemoveSort()
264 PropertyDescriptor IBindingList.SortProperty
294 bool IBindingList.IsSorted
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/tests/System/Data/
H A DDataViewTest_IBindingList.cs56 IBindingList ib = dv; in PropertyTest()
72 IBindingList ib = dv; in AddNewTest()
113 IBindingList ib = dv; in SortTest()
174 IBindingList ib = dv; in FindTest()
213 IBindingList ib = dv; in TestIfCorrectIndexIsUsed()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/tests/
H A DBindingListTests.cs15 IBindingList iBindingList = list; in Ctor_Default()
37 IBindingList iBindingList = bindingList; in Ctor_FixedSizeIList()
60 IBindingList iBindingList = bindingList; in Ctor_NonFixedSizeIList()
83 IBindingList iBindingList = bindingList; in Ctor_IReadOnlyList()
751 IBindingList bindingList = new BindingList<object>(); in SortProperty_Get_ReturnsNull()
758 IBindingList bindingList = new BindingList<object>(); in ApplySort_Invoke_ThrowsNotSupportedException()
765 IBindingList bindingList = new BindingList<object>(); in RemoveSort_Invoke_ThrowsNotSupportedException()
772 IBindingList bindingList = new BindingList<object>(); in Find_Invoke_ThrowsNotSupportedException()
979 IBindingList bindingList = new SubBindingList(); in ApplySort_ApplySortCoreOverriden_DoesNotThrow()
986 IBindingList bindingList = new SubBindingList(); in RemoveSort_RemoveSortCoreOverriden_DoesNotThrow()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.ComponentModel/
H A DBindingListTest.cs18 IBindingList ibl = (IBindingList)l; in BindingListDefaults()
38 IBindingList ibl = (IBindingList)l; in BindingListDefaults_FixedSizeList()
58 IBindingList ibl = (IBindingList)l; in BindingListDefaults_NonFixedSizeList()
78 IBindingList ibl = (IBindingList)l; in BindingListDefaults_ReadOnlyList()
/dports/lang/mono/mono-5.10.1.57/external/Newtonsoft.Json/Src/Newtonsoft.Json.Tests/Linq/
H A DJObjectTests.cs1212 IBindingList l = new JObject(); in IBindingListSortDirection()
1219 IBindingList l = new JObject(); in IBindingListSortProperty()
1226 IBindingList l = new JObject(); in IBindingListSupportsChangeNotification()
1233 IBindingList l = new JObject(); in IBindingListSupportsSearching()
1240 IBindingList l = new JObject(); in IBindingListSupportsSorting()
1247 IBindingList l = new JObject(); in IBindingListAllowEdit()
1254 IBindingList l = new JObject(); in IBindingListAllowNew()
1261 IBindingList l = new JObject(); in IBindingListAllowRemove()
1268 IBindingList l = new JObject(); in IBindingListAddIndex()
1277 IBindingList l = new JObject(); in IBindingListApplySort()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Linq/
H A DDataBindingList.cs12 internal static IBindingList Create<T>(DataContext context, IEnumerable<T> sequence) { in Create()
18 return (IBindingList)Activator.CreateInstance(bindingType, in Create()
H A DDataQuery.cs18 private IBindingList cachedList;
85 internal IBindingList GetNewBindingList() { in GetNewBindingList()
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json.Tests/Linq/
H A DJObjectTests.cs1269 IBindingList l = new JObject(); in IBindingListSortDirection()
1276 IBindingList l = new JObject(); in IBindingListSortProperty()
1283 IBindingList l = new JObject(); in IBindingListSupportsChangeNotification()
1290 IBindingList l = new JObject(); in IBindingListSupportsSearching()
1297 IBindingList l = new JObject(); in IBindingListSupportsSorting()
1304 IBindingList l = new JObject(); in IBindingListAllowEdit()
1311 IBindingList l = new JObject(); in IBindingListAllowNew()
1318 IBindingList l = new JObject(); in IBindingListAllowRemove()
1325 IBindingList l = new JObject(); in IBindingListAddIndex()
1353 IBindingList l = new JObject(); in IBindingListRemoveIndex()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/ref/
H A DSystem.ComponentModel.cs104 bool System.ComponentModel.IBindingList.AllowEdit { get { throw null; } }
105 bool System.ComponentModel.IBindingList.AllowNew { get { throw null; } }
106 bool System.ComponentModel.IBindingList.AllowRemove { get { throw null; } }
107 bool System.ComponentModel.IBindingList.IsSorted { get { throw null; } }
110 bool System.ComponentModel.IBindingList.SupportsChangeNotification { get { throw null; } }
111 bool System.ComponentModel.IBindingList.SupportsSearching { get { throw null; } }
112 bool System.ComponentModel.IBindingList.SupportsSorting { get { throw null; } }
131 …void System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor prop) { } in System.ComponentModel.IBindingList.AddIndex()
132 object System.ComponentModel.IBindingList.AddNew() { throw null; } in System.ComponentModel.IBindingList.AddNew()
135 …void System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor prop)… in System.ComponentModel.IBindingList.RemoveIndex()
[all …]

12345