Xamarin.Forms.Dynamic.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Xamarin.Forms.Dynamic</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Xamarin.Forms.BindingObjectExtensions">
  8. <summary>
  9. Exposes the <see cref="M:Xamarin.Forms.BindingObjectExtensions.LoadFromXaml``1(``0,System.String)"/> extension method.
  10. </summary>
  11. </member>
  12. <member name="M:Xamarin.Forms.BindingObjectExtensions.LoadFromXaml``1(``0,System.String)">
  13. <summary>
  14. Applies the given XAML to the view.
  15. </summary>
  16. </member>
  17. <member name="T:Xamarin.Forms.Dynamic.DictionaryModel">
  18. <summary>
  19. Provides a dynamic model based on a properties of
  20. key-value pairs.
  21. </summary>
  22. </member>
  23. <member name="M:Xamarin.Forms.Dynamic.DictionaryModel.#ctor">
  24. <summary>
  25. Initializes an instance of the class.
  26. </summary>
  27. </member>
  28. <member name="M:Xamarin.Forms.Dynamic.DictionaryModel.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})">
  29. <summary>
  30. Initializes the model with the properties to be used
  31. as properties.
  32. </summary>
  33. </member>
  34. <member name="M:Xamarin.Forms.Dynamic.DictionaryModel.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
  35. <summary>
  36. Tries to retrieve the value of a property using dynamic syntax.
  37. </summary>
  38. </member>
  39. <member name="M:Xamarin.Forms.Dynamic.DictionaryModel.TrySetMember(System.Dynamic.SetMemberBinder,System.Object)">
  40. <summary>
  41. Sets the value of a dictionary key using dynamic syntax.
  42. </summary>
  43. </member>
  44. <member name="M:Xamarin.Forms.Dynamic.DictionaryModel.GetTypeInfo">
  45. <summary>
  46. Retrieves an object that represents the type of this instance.
  47. </summary>
  48. </member>
  49. <member name="M:Xamarin.Forms.Dynamic.DictionaryModel.Add(System.String,System.Object)">
  50. <summary>
  51. Adds an element with the provided key and value to the <see cref="T:System.Collections.Generic.IDictionary`2" />.
  52. </summary>
  53. <param name="key">The object to use as the key of the element to add.</param>
  54. <param name="value">The object to use as the value of the element to add.</param>
  55. </member>
  56. <member name="M:Xamarin.Forms.Dynamic.DictionaryModel.ContainsKey(System.String)">
  57. <summary>
  58. Determines whether the <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the specified key.
  59. </summary>
  60. <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</param>
  61. <returns>
  62. true if the <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the key; otherwise, false.
  63. </returns>
  64. </member>
  65. <member name="M:Xamarin.Forms.Dynamic.DictionaryModel.Remove(System.String)">
  66. <summary>
  67. Removes the element with the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2" />.
  68. </summary>
  69. <param name="key">The key of the element to remove.</param>
  70. <returns>
  71. true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key" /> was not found in the original <see cref="T:System.Collections.Generic.IDictionary`2" />.
  72. </returns>
  73. </member>
  74. <member name="M:Xamarin.Forms.Dynamic.DictionaryModel.TryGetValue(System.String,System.Object@)">
  75. <summary>
  76. Gets the value associated with the specified key.
  77. </summary>
  78. <param name="key">The key whose value to get.</param>
  79. <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
  80. <returns>
  81. true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element with the specified key; otherwise, false.
  82. </returns>
  83. </member>
  84. <member name="E:Xamarin.Forms.Dynamic.DictionaryModel.CollectionChanged">
  85. <summary>Event raised when the collection changes.</summary>
  86. </member>
  87. <member name="E:Xamarin.Forms.Dynamic.DictionaryModel.PropertyChanged">
  88. <summary>Event raised when a property on the collection changes.</summary>
  89. </member>
  90. <member name="P:Xamarin.Forms.Dynamic.DictionaryModel.Keys">
  91. <summary>
  92. Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" />.
  93. </summary>
  94. <returns>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
  95. </member>
  96. <member name="P:Xamarin.Forms.Dynamic.DictionaryModel.Values">
  97. <summary>
  98. Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2" />.
  99. </summary>
  100. <returns>An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
  101. </member>
  102. <member name="P:Xamarin.Forms.Dynamic.DictionaryModel.Item(System.String)">
  103. <summary>
  104. Gets or sets the element with the specified key.
  105. </summary>
  106. <param name="key">The key.</param>
  107. <returns></returns>
  108. </member>
  109. <member name="M:Xamarin.Forms.Dynamic.JsonCommand.Dereference(System.String)">
  110. <summary>
  111. Dereferences a property name or path used as the $CanExecute property
  112. value. Very useful to make the execution dynamic depending on a value
  113. in the target model.
  114. </summary>
  115. </member>
  116. <member name="M:Xamarin.Forms.Dynamic.JsonExtensions.ApplyChanges(Newtonsoft.Json.Linq.JObject,Newtonsoft.Json.Linq.JObject)">
  117. <summary>
  118. Patches an existing source <see cref="T:Newtonsoft.Json.Linq.JObject"/> with (potentially
  119. partial) changes from another <see cref="T:Newtonsoft.Json.Linq.JObject"/>.
  120. </summary>
  121. </member>
  122. <member name="T:Xamarin.Forms.JsonModel">
  123. <summary>
  124. Dynamic data-bindable JSON-based model.
  125. </summary>
  126. </member>
  127. <member name="M:Xamarin.Forms.JsonModel.#ctor(System.Object[])">
  128. <summary>
  129. Creates the JSON-based model from content
  130. objects from Linq to Json content.
  131. </summary>
  132. </member>
  133. <member name="M:Xamarin.Forms.JsonModel.#ctor(Newtonsoft.Json.Linq.JObject)">
  134. <summary>
  135. Creates the JSON-based model from a loaded
  136. Linq to Json object.
  137. </summary>
  138. </member>
  139. <member name="M:Xamarin.Forms.JsonModel.Parse(System.String)">
  140. <summary>
  141. Load a model from a string that contains JSON.
  142. </summary>
  143. <param name="json">A string that contains JSON.</param>
  144. <returns>A <see cref="T:Xamarin.Forms.JsonModel"/> populated from the string that contains JSON.</returns>
  145. </member>
  146. <member name="M:Xamarin.Forms.JsonModel.Load(Newtonsoft.Json.JsonReader)">
  147. <summary>
  148. Loads an model from a JSON reader.
  149. </summary>
  150. <param name="reader">A <see cref="T:Newtonsoft.Json.JsonReader"/> that will be read for the content of the <see cref="T:Xamarin.Forms.JsonModel"/>.</param>
  151. <returns>A <see cref="T:Xamarin.Forms.JsonModel"/> that contains the JSON that was read from the specified <see cref="T:Newtonsoft.Json.JsonReader"/>.</returns>
  152. </member>
  153. <member name="M:Xamarin.Forms.JsonModel.GetTypeInfo">
  154. <summary>
  155. Retrieves an object that represents the type of this instance.
  156. </summary>
  157. </member>
  158. <member name="P:Xamarin.Forms.JsonModel.ChildrenTokens">
  159. <summary>
  160. Gets the container's children tokens.
  161. </summary>
  162. </member>
  163. </members>
  164. </doc>