Fix docs
authorJason Smith <jason.smith@xamarin.com>
Wed, 31 Aug 2016 05:01:42 +0000 (22:01 -0700)
committerJason Smith <jason.smith@xamarin.com>
Wed, 31 Aug 2016 05:01:42 +0000 (22:01 -0700)
17 files changed:
docs/Xamarin.Forms.Core/Xamarin.Forms/Easing.xml
docs/Xamarin.Forms.Core/Xamarin.Forms/Effect.xml
docs/Xamarin.Forms.Core/Xamarin.Forms/GridLength.xml
docs/Xamarin.Forms.Core/Xamarin.Forms/ListView.xml
docs/Xamarin.Forms.Core/Xamarin.Forms/Page.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/BaseDataSource.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/CompoundCollection.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/DataItem.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/DataView.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/IDataItem.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/IDataSource.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/IDataSourceProvider.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/JsonDataSource.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/ListItemControl.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/PersonDetailPage.xml
docs/Xamarin.Forms.Pages/Xamarin.Forms.Pages/UriJsonSource.xml
docs/Xamarin.Forms.Pages/index.xml

index 599aff3..82ce919 100644 (file)
         <ReturnType>Xamarin.Forms.Easing</ReturnType>
       </ReturnValue>
       <Docs>
-        <summary><para>Jumps towards, and then bounces as it settles at the final value.</para></summary>
+        <summary>
+          <para>Jumps towards, and then bounces as it settles at the final value.</para>
+        </summary>
         <remarks>
-            <img href="Easing.BounceIn.png" />
+          <img href="Easing.BounceIn.png" />
         </remarks>
       </Docs>
     </Member>
index 22a25cf..7dc0d01 100644 (file)
@@ -11,7 +11,9 @@
   <Interfaces />
   <Docs>
     <summary>A collection of styles and properties that can be added to an element at run time.</summary>
-    <remarks><para>Effects are suitable when the developer needs to use platform-specific features to achieve the desired effect. Developers should consider using <see cref="T:Xamarin.Forms.Behavior" /> if they do not need platform-specific implentations to achieve their desired result.</para></remarks>
+    <remarks>
+      <para>Effects are suitable when the developer needs to use platform-specific features to achieve the desired effect. Developers should consider using <see cref="T:Xamarin.Forms.Behavior" /> if they do not need platform-specific implentations to achieve their desired result.</para>
+    </remarks>
   </Docs>
   <Members>
     <Member MemberName="Element">
index 506a6af..ceeb24f 100644 (file)
       </ReturnValue>
       <Docs>
         <summary>A ready to reuse GridLength of GridUnitType.Star with a Value of 1.</summary>
-        <value></value>
+        <value>
+        </value>
         <remarks>If a Value other than 1 is needed with GridUnitType.Star, then use the constructor GridLength (value, GridUnitType.Star).</remarks>
       </Docs>
     </Member>
index f1fb11d..56521a0 100644 (file)
@@ -1038,6 +1038,22 @@ ListView CreateListView()
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
+    <Member MemberName="OnBindingContextChanged">
+      <MemberSignature Language="C#" Value="protected override void OnBindingContextChanged ();" />
+      <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void OnBindingContextChanged() cil managed" />
+      <MemberType>Method</MemberType>
+      <AssemblyInfo>
+        <AssemblyVersion>2.0.0.0</AssemblyVersion>
+      </AssemblyInfo>
+      <ReturnValue>
+        <ReturnType>System.Void</ReturnType>
+      </ReturnValue>
+      <Parameters />
+      <Docs>
+        <summary>To be added.</summary>
+        <remarks>To be added.</remarks>
+      </Docs>
+    </Member>
     <Member MemberName="OnSizeRequest">
       <MemberSignature Language="C#" Value="protected override Xamarin.Forms.SizeRequest OnSizeRequest (double widthConstraint, double heightConstraint);" />
       <MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance valuetype Xamarin.Forms.SizeRequest OnSizeRequest(float64 widthConstraint, float64 heightConstraint) cil managed" />
index 44d7955..72a0760 100644 (file)
@@ -383,7 +383,9 @@ namespace MyFirstFormsApp.WinPhone
         <param name="buttons">Text labels for additional buttons. Must not be <see langword="null" />.</param>
         <summary>Displays a native platform action sheet, allowing the application user to choose from several buttons.</summary>
         <returns>An awaitable Task that displays an action sheet and returns the Text of the button pressed by the user.</returns>
-        <remarks><para>Developers should be aware that Windows' line endings, CR-LF, only work on Windows systems, and are incompatible with iOS and Android. A particular consequence of this is that characters that appear after a CR-LF, (For example, in the title.) may not be displayed on non-Windows platforms. Developers must use the correct line endings for each of the targeted systems.</para></remarks>
+        <remarks>
+          <para>Developers should be aware that Windows' line endings, CR-LF, only work on Windows systems, and are incompatible with iOS and Android. A particular consequence of this is that characters that appear after a CR-LF, (For example, in the title.) may not be displayed on non-Windows platforms. Developers must use the correct line endings for each of the targeted systems.</para>
+        </remarks>
       </Docs>
     </Member>
     <Member MemberName="DisplayAlert">
index 4d86de5..9d7b894 100644 (file)
@@ -98,8 +98,9 @@
         <ReturnType>System.Boolean</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Gets a value that is <see langword="true" /> if the data is loading, or <see langword="false" /> if it is finished loading or has not begun to load.</summary>
-          <value><see langword="true" /> if the data is loading, or <see langword="false" /> if it is finished loading or has not begun to load.</value>
+        <summary>Gets a value that is <see langword="true" /> if the data is loading, or <see langword="false" /> if it is finished loading or has not begun to load.</summary>
+        <value>
+          <see langword="true" /> if the data is loading, or <see langword="false" /> if it is finished loading or has not begun to load.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <Parameter Name="key" Type="System.String" />
       </Parameters>
       <Docs>
-          <param name="key">The key for the data item to get or set.</param>
-          <summary>Gets or sets the data item that is identified by <paramref nam="key" />.</summary>
-          <value>The data item that is identified by <paramref nam="key" />.</value>>
+        <param name="key">The key for the data item to get or set.</param>
+        <summary>Gets or sets the data item that is identified by <paramref nam="key" />.</summary>
+        <value>The data item that is identified by <paramref nam="key" />.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <param name="key">The identifier for the data item to change.</param>
         <param name="value">The new value.</param>
         <summary>Sets the data that is identified by <paramref name="key" /> to <paramref name="value" /> and calls the <see cref="M:Xamarin.Forms.Pages.BaseDataSource.OnPropertyChanged" /> method if <paramref name="value" /> is different from the current value.</summary>
-        <returns><see langword="false" /> if the new value is the same as the old value. Otherwise, <see langword="true" />.</returns>
+        <returns>
+          <see langword="false" /> if the new value is the same as the old value. Otherwise, <see langword="true" />.</returns>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
           <AttributeName>System.Diagnostics.DebuggerStepThrough</AttributeName>
         </Attribute>
         <Attribute>
-          <AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Xamarin.Forms.Pages.BaseDataSource/&lt;Xamarin_Forms_Pages_IDataSource_MaskKey&gt;c__async0))</AttributeName>
+          <AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Xamarin.Forms.Pages.BaseDataSource/&lt;Xamarin-Forms-Pages-IDataSource-MaskKey&gt;d__13))</AttributeName>
         </Attribute>
       </Attributes>
       <ReturnValue>
           <AttributeName>System.Diagnostics.DebuggerStepThrough</AttributeName>
         </Attribute>
         <Attribute>
-          <AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Xamarin.Forms.Pages.BaseDataSource/&lt;Xamarin_Forms_Pages_IDataSource_UnmaskKey&gt;c__async1))</AttributeName>
+          <AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Xamarin.Forms.Pages.BaseDataSource/&lt;Xamarin-Forms-Pages-IDataSource-UnmaskKey&gt;d__14))</AttributeName>
         </Attribute>
       </Attributes>
       <ReturnValue>
index a670585..e5c86b9 100644 (file)
       <Docs>
         <param name="value">The value to check.</param>
         <summary>Returns <see langword="true" /> if <paramref name="value" /> is contained in the compound collection. Otherwise, returns <see langword="false" />.</summary>
-        <returns><see langword="true" /> if <paramref name="value" /> is contained in the compound collection. Otherwise, <see langword="false" />.</returns>
+        <returns>
+          <see langword="true" /> if <paramref name="value" /> is contained in the compound collection. Otherwise, <see langword="false" />.</returns>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
       <AssemblyInfo>
         <AssemblyVersion>1.0.0.0</AssemblyVersion>
       </AssemblyInfo>
+      <Attributes>
+        <Attribute>
+          <AttributeName>System.Runtime.CompilerServices.IteratorStateMachine(typeof(Xamarin.Forms.Pages.CompoundCollection/&lt;GetEnumerator&gt;d__18))</AttributeName>
+        </Attribute>
+      </Attributes>
       <ReturnValue>
         <ReturnType>System.Collections.IEnumerator</ReturnType>
       </ReturnValue>
       </ReturnValue>
       <Docs>
         <summary>Returns <see langword="false" />.</summary>
-        <value><see langword="false" />.</value>
+        <value>
+          <see langword="false" />.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <ReturnType>System.Boolean</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Returns <see langword="true" />.</summary>
-          <value><see langword="true" />.</value>
+        <summary>Returns <see langword="true" />.</summary>
+        <value>
+          <see langword="true" />.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <ReturnType>System.Boolean</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Returns <see langword="false" />.</summary>
-          <value><see langword="false" />.</value>
+        <summary>Returns <see langword="false" />.</summary>
+        <value>
+          <see langword="false" />.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
       </ReturnValue>
       <Docs>
         <summary>Returns <see langword="null" />.</summary>
-        <value><see langword="null" />.</value>
+        <value>
+          <see langword="null" />.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
index 6ae299b..0c10006 100644 (file)
@@ -68,7 +68,8 @@
       <Docs>
         <param name="obj">The object to compare to the current object.</param>
         <summary>Returns <see langword="true" /> if <paramref name="obj" /> is the same object as the current data item, or if it is another <see cref="T:Xamarin.Forms.Pages.DataItem" /> that contains the same name and value. Otherwise, returns <see langword="false" />.</summary>
-        <returns><see langword="true" /> if <paramref name="obj" /> is the same object as the current data item, or if it is another <see cref="T:Xamarin.Forms.Pages.DataItem" /> that contains the same name and value. Otherwise, <see langword="false" />.</returns>
+        <returns>
+          <see langword="true" /> if <paramref name="obj" /> is the same object as the current data item, or if it is another <see cref="T:Xamarin.Forms.Pages.DataItem" /> that contains the same name and value. Otherwise, <see langword="false" />.</returns>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
@@ -88,7 +89,8 @@
       <Docs>
         <param name="other">The <see cref="T:Xamarin.Forms.Pages.DataItem" /> to compare to the current object.</param>
         <summary>Returns <see langword="true" /> if <paramref name="other" /> contains the same name and value. Otherwise, returns <see langword="false" />.</summary>
-        <returns><see langword="true" /> if <paramref name="other" /> contains the same name and value. Otherwise, <see langword="false" />.</returns>
+        <returns>
+          <see langword="true" /> if <paramref name="other" /> contains the same name and value. Otherwise, <see langword="false" />.</returns>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <param name="left">The first <see cref="T:Xamarin.Forms.Pages.DataItem" /> to compare.</param>
         <param name="right">The second <see cref="T:Xamarin.Forms.Pages.DataItem" /> to compare.</param>
         <summary>Returns <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are the same object, or if they have the same name and value. Otherwise, returns <see langword="false" />.</summary>
-        <returns><see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are the same object, or if they have the same name and value. Otherwise, <see langword="false" />.</returns>
+        <returns>
+          <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are the same object, or if they have the same name and value. Otherwise, <see langword="false" />.</returns>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <Parameter Name="right" Type="Xamarin.Forms.Pages.DataItem" />
       </Parameters>
       <Docs>
-          <param name="left">The first <see cref="T:Xamarin.Forms.Pages.DataItem" /> to compare.</param>
-          <param name="right">The second <see cref="T:Xamarin.Forms.Pages.DataItem" /> to compare.</param>
-          <summary>Returns <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not the same object, or if they are the same object, but have different names or values. Otherwise, returns <see langword="false" />.</summary>
-          <returns><see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not the same object, or if they are the same object, but have different names or values. Otherwise, <see langword="false" />.</returns>
+        <param name="left">The first <see cref="T:Xamarin.Forms.Pages.DataItem" /> to compare.</param>
+        <param name="right">The second <see cref="T:Xamarin.Forms.Pages.DataItem" /> to compare.</param>
+        <summary>Returns <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not the same object, or if they are the same object, but have different names or values. Otherwise, returns <see langword="false" />.</summary>
+        <returns>
+          <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not the same object, or if they are the same object, but have different names or values. Otherwise, <see langword="false" />.</returns>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
index 92a10c2..20e7417 100644 (file)
         <Parameter Name="key" Type="System.String" />
       </Parameters>
       <Docs>
-          <param name="key">The key for the data item to block from the application.</param>
-          <summary>Prevents the data item that is identified by <paramref name="key" /> from being available to the application.</summary>
+        <param name="key">The key for the data item to block from the application.</param>
+        <summary>Prevents the data item that is identified by <paramref name="key" /> from being available to the application.</summary>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <Parameter Name="key" Type="System.String" />
       </Parameters>
       <Docs>
-          <param name="key">The key for the data item to unblock from the application</param>
-          <summary>Makes the previously masked data item that is identified by <paramref name="key" /> available to the application</summary>
+        <param name="key">The key for the data item to unblock from the application</param>
+        <summary>Makes the previously masked data item that is identified by <paramref name="key" /> available to the application</summary>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
index 876d6b0..584557f 100644 (file)
@@ -22,8 +22,8 @@
         <ReturnType>System.String</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Gets or sets the name of the data item.</summary>
-          <value>The name of the data item.</value>
+        <summary>Gets or sets the name of the data item.</summary>
+        <value>The name of the data item.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
@@ -38,8 +38,8 @@
         <ReturnType>System.Object</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Gets or sets the value of the data item.</summary>
-          <value>The value of the data item.</value>
+        <summary>Gets or sets the value of the data item.</summary>
+        <value>The value of the data item.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
index 801468d..0dcd306 100644 (file)
@@ -39,7 +39,8 @@
       </ReturnValue>
       <Docs>
         <summary>Gets a value that is <see langword="true" /> if the data is loading, or <see langword="false" /> if it is finished loading or has not begun to load.</summary>
-        <value><see langword="true" /> if the data is loading, or <see langword="false" /> if it is finished loading or has not begun to load.</value>
+        <value>
+          <see langword="true" /> if the data is loading, or <see langword="false" /> if it is finished loading or has not begun to load.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
index c4a13dd..d3900bc 100644 (file)
@@ -41,8 +41,8 @@
         <Parameter Name="key" Type="System.String" />
       </Parameters>
       <Docs>
-          <param name="key">The key for the data item to block from the application.</param>
-          <summary>Prevents the data item that is identified by <paramref name="key" /> from being available to the application.</summary>
+        <param name="key">The key for the data item to block from the application.</param>
+        <summary>Prevents the data item that is identified by <paramref name="key" /> from being available to the application.</summary>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
@@ -60,8 +60,8 @@
         <Parameter Name="key" Type="System.String" />
       </Parameters>
       <Docs>
-          <param name="key">The key for the data item to unblock from the application</param>
-          <summary>Makes the previously masked data item that is identified by <paramref name="key" /> available to the application</summary>
+        <param name="key">The key for the data item to unblock from the application</param>
+        <summary>Makes the previously masked data item that is identified by <paramref name="key" /> available to the application</summary>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
index 48430f6..75858a4 100644 (file)
@@ -39,7 +39,7 @@
           <AttributeName>System.Diagnostics.DebuggerStepThrough</AttributeName>
         </Attribute>
         <Attribute>
-          <AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Xamarin.Forms.Pages.JsonDataSource/&lt;GetRawData&gt;c__async0))</AttributeName>
+          <AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Xamarin.Forms.Pages.JsonDataSource/&lt;GetRawData&gt;d__9))</AttributeName>
         </Attribute>
       </Attributes>
       <ReturnValue>
@@ -89,8 +89,9 @@
       <Docs>
         <param name="key">The key to add or modify.</param>
         <param name="value">The value to assign.</param>
-        <summary>Assigns the data that is identified by <paramref name="key"/> to <paramref name="value" />, creating it if it does not exist.</summary>
-        <returns><see langword="true" /> if an existing value was modified, or if a new value was assigned to a value other than <parmamref name="null" />. Otherwise, <see langword="false" />.</returns>
+        <summary>Assigns the data that is identified by <paramref name="key" /> to <paramref name="value" />, creating it if it does not exist.</summary>
+        <returns>
+          <see langword="true" /> if an existing value was modified, or if a new value was assigned to a value other than <parmamref name="null" />. Otherwise, <see langword="false" />.</returns>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
index ed8fc5b..83f9040 100644 (file)
@@ -38,8 +38,8 @@
         <ReturnType>Xamarin.Forms.Aspect</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Gets or sets the image aspect, which controls clipping and filling when the image size does not match the view size.</summary>
-          <value>The image aspect, which controls clipping and filling when the image size does not match the view size.</value>
+        <summary>Gets or sets the image aspect, which controls clipping and filling when the image size does not match the view size.</summary>
+        <value>The image aspect, which controls clipping and filling when the image size does not match the view size.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
@@ -54,7 +54,7 @@
         <ReturnType>Xamarin.Forms.BindableProperty</ReturnType>
       </ReturnValue>
       <Docs>
-         <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.ListItemControl.Aspect" /> property.</summary>
+        <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.ListItemControl.Aspect" /> property.</summary>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
@@ -69,8 +69,8 @@
         <ReturnType>System.String</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Gets or sets the detailed description of the list item image.</summary>
-          <value>The detailed description of the list item image.</value>
+        <summary>Gets or sets the detailed description of the list item image.</summary>
+        <value>The detailed description of the list item image.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
@@ -85,7 +85,7 @@
         <ReturnType>Xamarin.Forms.BindableProperty</ReturnType>
       </ReturnValue>
       <Docs>
-         <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.ListItemControl.Detail" /> property.</summary>
+        <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.ListItemControl.Detail" /> property.</summary>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <ReturnType>Xamarin.Forms.ImageSource</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Gets or sets the image source from which to get the list item image.</summary>
-          <value>The image source from which to get the list item image.</value>
+        <summary>Gets or sets the image source from which to get the list item image.</summary>
+        <value>The image source from which to get the list item image.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <ReturnType>Xamarin.Forms.BindableProperty</ReturnType>
       </ReturnValue>
       <Docs>
-         <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.ListItemControl.ImageSource" /> property.</summary>
+        <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.ListItemControl.ImageSource" /> property.</summary>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <ReturnType>Xamarin.Forms.ImageSource</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Gets or sets the image source from which to get the placeholder image.</summary>
-          <value>The image source from which to get the placeholder image.</value>
+        <summary>Gets or sets the image source from which to get the placeholder image.</summary>
+        <value>The image source from which to get the placeholder image.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <ReturnType>Xamarin.Forms.BindableProperty</ReturnType>
       </ReturnValue>
       <Docs>
-         <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.ListItemControl.PlaceHolderImageSource" /> property.</summary>
+        <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.ListItemControl.PlaceHolderImageSource" /> property.</summary>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
         <ReturnType>System.String</ReturnType>
       </ReturnValue>
       <Docs>
-          <summary>Gets or sets the title text for the list item image.</summary>
-          <value>The title text for the list item image.</value>
+        <summary>Gets or sets the title text for the list item image.</summary>
+        <value>The title text for the list item image.</value>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
index e4dfccb..1020b5b 100644 (file)
         <ReturnType>Xamarin.Forms.BindableProperty</ReturnType>
       </ReturnValue>
       <Docs>
-       <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.PersonDetailPage.Employer" /> property.</summary>
+        <summary>Backing store for the <see cref="P:Xamarin.Forms.Pages.PersonDetailPage.Employer" /> property.</summary>
         <remarks>To be added.</remarks>
       </Docs>
     </Member>
index 81718d8..61af091 100644 (file)
@@ -39,7 +39,7 @@
           <AttributeName>System.Diagnostics.DebuggerStepThrough</AttributeName>
         </Attribute>
         <Attribute>
-          <AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Xamarin.Forms.Pages.UriJsonSource/&lt;GetJson&gt;c__async0))</AttributeName>
+          <AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Xamarin.Forms.Pages.UriJsonSource/&lt;GetJson&gt;d__4))</AttributeName>
         </Attribute>
       </Attributes>
       <ReturnValue>
index a48531f..8e0b682 100644 (file)
@@ -3,7 +3,7 @@
     <Assembly Name="Xamarin.Forms.Pages" Version="1.0.0.0">
       <Attributes>
         <Attribute>
-          <AttributeName>System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.DisableOptimizations | System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints)</AttributeName>
+          <AttributeName>System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.Default | System.Diagnostics.DebuggableAttribute+DebuggingModes.DisableOptimizations | System.Diagnostics.DebuggableAttribute+DebuggingModes.EnableEditAndContinue | System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints)</AttributeName>
         </Attribute>
         <Attribute>
           <AttributeName>System.Reflection.AssemblyCompany("")</AttributeName>
           <AttributeName>System.Resources.NeutralResourcesLanguage("en")</AttributeName>
         </Attribute>
         <Attribute>
+          <AttributeName>System.Runtime.CompilerServices.CompilationRelaxations(8)</AttributeName>
+        </Attribute>
+        <Attribute>
           <AttributeName>System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true)</AttributeName>
         </Attribute>
+        <Attribute>
+          <AttributeName>System.Runtime.Versioning.TargetFramework(".NETPortable,Version=v4.5,Profile=Profile259", FrameworkDisplayName=".NET Portable Subset")</AttributeName>
+        </Attribute>
       </Attributes>
     </Assembly>
   </Assemblies>