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

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