summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT/WindowsExpressionSearch.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT/WindowsExpressionSearch.cs')
-rw-r--r--Xamarin.Forms.Platform.WinRT/WindowsExpressionSearch.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/WindowsExpressionSearch.cs b/Xamarin.Forms.Platform.WinRT/WindowsExpressionSearch.cs
index 778cc135..417b23e5 100644
--- a/Xamarin.Forms.Platform.WinRT/WindowsExpressionSearch.cs
+++ b/Xamarin.Forms.Platform.WinRT/WindowsExpressionSearch.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
+using Xamarin.Forms.Internals;
#if WINDOWS_UWP
@@ -159,7 +160,7 @@ namespace Xamarin.Forms.Platform.WinRT
object container = ((ConstantExpression)member.Expression).Value;
object value = ((FieldInfo)member.Member).GetValue(container);
- if (_targeType.IsInstanceOfType(value))
+ if (ReflectionExtensions.IsInstanceOfType(_targeType, value))
{
_results.Add(value);
}