summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/INativeValueConverterService.cs
blob: 4309be9a4f9439434fcd6d100599425f71fd2904 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace Xamarin.Forms.Xaml
{
	interface INativeValueConverterService
	{
		bool ConvertTo(object value, Type toType, out object nativeValue);
	}
}