Blacker.MangaScraper.Helpers.ListBoxExtension.GetSelectedItemsSource C# (CSharp) Method

GetSelectedItemsSource() public static method

public static GetSelectedItemsSource ( DependencyObject element ) : IList
element System.Windows.DependencyObject
return IList
        public static IList GetSelectedItemsSource(DependencyObject element)
        {
            if (element == null)
                throw new ArgumentNullException("element"); return (IList)element.GetValue(SelectedItemsSourceProperty);
        }