summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml/XamlServiceProvider.cs
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-12-01 22:40:20 +0100
committerGitHub <noreply@github.com>2016-12-01 22:40:20 +0100
commit3ff3487d4fa5edb7ba3dcd7b6db0e6b58b03809c (patch)
treec522f65d25b5c1a6d6cd94e25245f35919f3c284 /Xamarin.Forms.Xaml/XamlServiceProvider.cs
parent1ff0db9c6f4ba1167e6b2620066f83088f23c5bf (diff)
downloadxamarin-forms-3ff3487d4fa5edb7ba3dcd7b6db0e6b58b03809c.tar.gz
xamarin-forms-3ff3487d4fa5edb7ba3dcd7b6db0e6b58b03809c.tar.bz2
xamarin-forms-3ff3487d4fa5edb7ba3dcd7b6db0e6b58b03809c.zip
[XamlC] provide backward compat for ProvideValueTarget without Target… (#583)
* [XamlC] provide backward compat for ProvideValueTarget without TargetProperty * docs
Diffstat (limited to 'Xamarin.Forms.Xaml/XamlServiceProvider.cs')
-rw-r--r--Xamarin.Forms.Xaml/XamlServiceProvider.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml/XamlServiceProvider.cs b/Xamarin.Forms.Xaml/XamlServiceProvider.cs
index 19dd96f5..5052a180 100644
--- a/Xamarin.Forms.Xaml/XamlServiceProvider.cs
+++ b/Xamarin.Forms.Xaml/XamlServiceProvider.cs
@@ -137,6 +137,11 @@ namespace Xamarin.Forms.Xaml.Internals
readonly object[] objectAndParents;
readonly object targetProperty;
+ [Obsolete("TargetProperty is now supported, use it")]
+ public SimpleValueTargetProvider(object[] objectAndParents) : this (objectAndParents, null)
+ {
+ }
+
public SimpleValueTargetProvider(object[] objectAndParents, object targetProperty)
{
if (objectAndParents == null)