9 references to GetListItemProperties
System.Windows.Forms (5)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
1555return ListBindingHelper.GetListItemProperties(List, listAccessors);
System\Windows\Forms\DataBinding\CurrencyManager.cs (1)
608ListBindingHelper.GetListItemProperties(_list, listAccessors);
System\Windows\Forms\DataBinding\ListBindingHelper.cs (2)
197return GetListItemProperties(dataSource, listAccessors); 482return GetListItemProperties(value, accessors);
System\Windows\Forms\DataBinding\PropertyManager.cs (1)
65return ListBindingHelper.GetListItemProperties(_dataSource, listAccessors);
System.Windows.Forms.Tests (4)
System\Windows\Forms\ListBindingHelperTests.cs (4)
295properties = ListBindingHelper.GetListItemProperties(list, null)?.Cast<PropertyDescriptor>(); 299properties = ListBindingHelper.GetListItemProperties(list, Array.Empty<PropertyDescriptor>())?.Cast<PropertyDescriptor>(); 409IEnumerable<PropertyDescriptor> properties = ListBindingHelper.GetListItemProperties(list, listAccessors)?.Cast<PropertyDescriptor>(); 456Assert.Throws<TargetInvocationException>(() => ListBindingHelper.GetListItemProperties(new DataClass(), TypeDescriptor.GetProperties(typeof(ListDataClass)).Cast<PropertyDescriptor>().ToArray()));