summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IExpressionSearch.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IExpressionSearch.cs')
-rw-r--r--Xamarin.Forms.Core/IExpressionSearch.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IExpressionSearch.cs b/Xamarin.Forms.Core/IExpressionSearch.cs
new file mode 100644
index 00000000..e5d4c26f
--- /dev/null
+++ b/Xamarin.Forms.Core/IExpressionSearch.cs
@@ -0,0 +1,10 @@
+using System.Collections.Generic;
+using System.Linq.Expressions;
+
+namespace Xamarin.Forms
+{
+ internal interface IExpressionSearch
+ {
+ List<T> FindObjects<T>(Expression expression) where T : class;
+ }
+} \ No newline at end of file