summaryrefslogtreecommitdiff
path: root/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml
diff options
context:
space:
mode:
authorMike Norman <mknorman@gmail.com>2017-03-16 16:59:29 -0500
committerRui Marinho <me@ruimarinho.net>2017-03-16 21:59:29 +0000
commita41f9d3556d17829f513c4fb2417b9ca399a71e9 (patch)
treef1ea1f39c29dd8b559aa6bda3098330958ef7ab1 /docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml
parente36a02497a017e57d306e6e1f56c29f536505f2b (diff)
downloadxamarin-forms-a41f9d3556d17829f513c4fb2417b9ca399a71e9.tar.gz
xamarin-forms-a41f9d3556d17829f513c4fb2417b9ca399a71e9.tar.bz2
xamarin-forms-a41f9d3556d17829f513c4fb2417b9ca399a71e9.zip
Remaining XAML API summaries. (#813)
* Remaining XAML API summaries. * update docs
Diffstat (limited to 'docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml')
-rw-r--r--docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/AcceptEmptyServiceProviderAttribute.xml8
-rw-r--r--docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IMarkupExtension`1.xml6
-rw-r--r--docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IValueProvider.xml4
-rw-r--r--docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXamlTypeResolver.xml2
-rw-r--r--docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXmlLineInfoProvider.xml4
-rw-r--r--docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XamlParseException.xml4
-rw-r--r--docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XmlLineInfo.xml12
7 files changed, 21 insertions, 19 deletions
diff --git a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/AcceptEmptyServiceProviderAttribute.xml b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/AcceptEmptyServiceProviderAttribute.xml
index d95dffa3..fc3e5bb3 100644
--- a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/AcceptEmptyServiceProviderAttribute.xml
+++ b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/AcceptEmptyServiceProviderAttribute.xml
@@ -15,8 +15,10 @@
</Attribute>
</Attributes>
<Docs>
- <summary>To be added.</summary>
- <remarks>To be added.</remarks>
+ <summary>Tells the XAML parser and compiler that they may ignore supplied service providers in methods and constructors in the attributed class.</summary>
+ <remarks>
+ <para>Developers should note that this attribute does not guarantee that the parser will not pass <see langword="null" /> instead of a supplied service provider. It only allows that they may do so.</para>
+ </remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
@@ -28,7 +30,7 @@
</AssemblyInfo>
<Parameters />
<Docs>
- <summary>To be added.</summary>
+ <summary>Creates a new <see cref="T:Xamarin.Forms.Xaml.AcceptEmptyServiceProviderAttribute" /> with default values.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
diff --git a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IMarkupExtension`1.xml b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IMarkupExtension`1.xml
index c4f07f8d..75e5f481 100644
--- a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IMarkupExtension`1.xml
+++ b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IMarkupExtension`1.xml
@@ -20,7 +20,7 @@
</Interfaces>
<Docs>
<typeparam name="T">To be added.</typeparam>
- <summary>To be added.</summary>
+ <summary>Provides a base class for XAML markup extension implementations</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
@@ -40,8 +40,8 @@
</Parameters>
<Docs>
<param name="serviceProvider">To be added.</param>
- <summary>To be added.</summary>
- <returns>To be added.</returns>
+ <summary>When implemented in a derived class, returns an object that is provided as the value of the target property for this markup extension.</summary>
+ <returns>The object that is provided as the value of the target property for this markup extension.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
diff --git a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IValueProvider.xml b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IValueProvider.xml
index 27fe2805..ca920a4e 100644
--- a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IValueProvider.xml
+++ b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IValueProvider.xml
@@ -8,7 +8,7 @@
</AssemblyInfo>
<Interfaces />
<Docs>
- <summary>To be added.</summary>
+ <summary>Interface for value providers.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
@@ -28,7 +28,7 @@
</Parameters>
<Docs>
<param name="serviceProvider">To be added.</param>
- <summary>To be added.</summary>
+ <summary>When implemented in a derived class, provides a value with the specified <paramref name="serviceProvider" />.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
diff --git a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXamlTypeResolver.xml b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXamlTypeResolver.xml
index 54fc03c8..f41556df 100644
--- a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXamlTypeResolver.xml
+++ b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXamlTypeResolver.xml
@@ -60,7 +60,7 @@
<Docs>
<param name="qualifiedTypeName">To be added.</param>
<param name="serviceProvider">To be added.</param>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
diff --git a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXmlLineInfoProvider.xml b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXmlLineInfoProvider.xml
index eaacbe51..5340459b 100644
--- a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXmlLineInfoProvider.xml
+++ b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/IXmlLineInfoProvider.xml
@@ -8,7 +8,7 @@
</AssemblyInfo>
<Interfaces />
<Docs>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
@@ -24,7 +24,7 @@
<ReturnType>System.Xml.IXmlLineInfo</ReturnType>
</ReturnValue>
<Docs>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
diff --git a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XamlParseException.xml b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XamlParseException.xml
index 75eb2f60..897fd431 100644
--- a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XamlParseException.xml
+++ b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XamlParseException.xml
@@ -31,7 +31,7 @@
<Docs>
<param name="message">To be added.</param>
<param name="xmlInfo">To be added.</param>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -51,7 +51,7 @@
<param name="message">To be added.</param>
<param name="xmlInfo">To be added.</param>
<param name="innerException">To be added.</param>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
diff --git a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XmlLineInfo.xml b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XmlLineInfo.xml
index eac45214..db1e9d0d 100644
--- a/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XmlLineInfo.xml
+++ b/docs/Xamarin.Forms.Core/Xamarin.Forms.Xaml/XmlLineInfo.xml
@@ -15,7 +15,7 @@
</Interface>
</Interfaces>
<Docs>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
@@ -29,7 +29,7 @@
</AssemblyInfo>
<Parameters />
<Docs>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -48,7 +48,7 @@
<Docs>
<param name="linenumber">To be added.</param>
<param name="lineposition">To be added.</param>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
@@ -65,7 +65,7 @@
</ReturnValue>
<Parameters />
<Docs>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
@@ -82,7 +82,7 @@
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
@@ -99,7 +99,7 @@
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
- <summary>To be added.</summary>
+ <summary>For internal use by the XAML engine.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>