From 17fdde66d94155fc62a034fa6658995bef6fd6e5 Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Tue, 22 Mar 2016 13:02:25 -0700 Subject: Initial import --- Xamarin.Forms.Xaml/IExpressionParser.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Xamarin.Forms.Xaml/IExpressionParser.cs (limited to 'Xamarin.Forms.Xaml/IExpressionParser.cs') diff --git a/Xamarin.Forms.Xaml/IExpressionParser.cs b/Xamarin.Forms.Xaml/IExpressionParser.cs new file mode 100644 index 00000000..39b92273 --- /dev/null +++ b/Xamarin.Forms.Xaml/IExpressionParser.cs @@ -0,0 +1,15 @@ +using System; + +namespace Xamarin.Forms.Xaml +{ + internal interface IExpressionParser + { + object Parse(string match, ref string expression, IServiceProvider serviceProvider); + } + + internal interface IExpressionParser : IExpressionParser + where T : class + { + new T Parse(string match, ref string expression, IServiceProvider serviceProvider); + } +} \ No newline at end of file -- cgit v1.2.3