public void IBindingListApplySort()
        {
			AssertException.Throws<NotSupportedException>(() =>
            {
                IBindingList l = new JObject();
                l.ApplySort(null, ListSortDirection.Ascending);
            }, "Specified method is not supported.");
        }
Example #2
0
        public void IBindingListApplySort()
        {
            IBindingList l = new JObject();

            l.ApplySort(null, ListSortDirection.Ascending);
        }
 public void IBindingListApplySort()
 {
   IBindingList l = new JObject();
   l.ApplySort(null, ListSortDirection.Ascending);
 }