summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IExpressionSearch.cs
blob: 7f8107b7b9788979a5e6bf02d473560581097ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq.Expressions;

namespace Xamarin.Forms.Internals
{
	[EditorBrowsable(EditorBrowsableState.Never)]
	public interface IExpressionSearch
	{
		List<T> FindObjects<T>(Expression expression) where T : class;
	}
}