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