summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ContentPropertyAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/ContentPropertyAttribute.cs')
-rw-r--r--Xamarin.Forms.Core/ContentPropertyAttribute.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/ContentPropertyAttribute.cs b/Xamarin.Forms.Core/ContentPropertyAttribute.cs
new file mode 100644
index 00000000..7aa60744
--- /dev/null
+++ b/Xamarin.Forms.Core/ContentPropertyAttribute.cs
@@ -0,0 +1,26 @@
+//
+// ContentPropertyAttribute.cs
+//
+// Author:
+// Stephane Delcroix <stephane@delcroix.org>
+//
+// Copyright (c) 2013 S. Delcroix
+//
+
+using System;
+
+namespace Xamarin.Forms
+{
+ [AttributeUsage(AttributeTargets.Class)]
+ public sealed class ContentPropertyAttribute : Attribute
+ {
+ internal static string[] ContentPropertyTypes = { "Xamarin.Forms.ContentPropertyAttribute", "System.Windows.Markup.ContentPropertyAttribute" };
+
+ public ContentPropertyAttribute(string name)
+ {
+ Name = name;
+ }
+
+ public string Name { get; private set; }
+ }
+} \ No newline at end of file