Skip to content

Commit 0749045

Browse files
mairawRon Petrusha
andauthored
import UWP content from IntelliSense - Windows.Foundation namespace (#2473)
* import UWP content from IntelliSense * small edits * Apply suggestions from peer review Co-Authored-By: Ron Petrusha <[email protected]>
1 parent 8b04083 commit 0749045

File tree

3 files changed

+138
-132
lines changed

3 files changed

+138
-132
lines changed

xml/Windows.Foundation/Point.xml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</Attribute>
2525
</Attributes>
2626
<Docs>
27-
<summary>To be added.</summary>
27+
<summary>Represents an x- and y-coordinate pair in two-dimensional space. Can also represent a logical point for certain property usages.</summary>
2828
<remarks>To be added.</remarks>
2929
</Docs>
3030
<Members>
@@ -46,9 +46,9 @@
4646
<Parameter Name="y" Type="System.Double" />
4747
</Parameters>
4848
<Docs>
49-
<param name="x">To be added.</param>
50-
<param name="y">To be added.</param>
51-
<summary>To be added.</summary>
49+
<param name="x">The x-coordinate value of the <see cref="T:Windows.Foundation.Point" /> struct. </param>
50+
<param name="y">The y-coordinate value of the <see cref="T:Windows.Foundation.Point" /> struct. </param>
51+
<summary>Initializes a <see cref="T:Windows.Foundation.Point" /> struct that contains the specified values.</summary>
5252
<remarks>To be added.</remarks>
5353
</Docs>
5454
</Member>
@@ -77,9 +77,9 @@
7777
<Parameter Name="o" Type="System.Object" />
7878
</Parameters>
7979
<Docs>
80-
<param name="o">To be added.</param>
81-
<summary>To be added.</summary>
82-
<returns>To be added.</returns>
80+
<param name="o">The object to compare.</param>
81+
<summary>Determines whether the specified object is a <see cref="T:Windows.Foundation.Point" /> and whether it contains the same values as this <see cref="T:Windows.Foundation.Point" />.</summary>
82+
<returns><see langword="true" /> if <paramref name="obj" /> is a <see cref="T:Windows.Foundation.Point" /> and contains the same <see cref="P:Windows.Foundation.Point.X" /> and <see cref="P:Windows.Foundation.Point.Y" /> values as this <see cref="T:Windows.Foundation.Point" />; otherwise, <see langword="false" />.</returns>
8383
<remarks>To be added.</remarks>
8484
</Docs>
8585
</Member>
@@ -103,9 +103,9 @@
103103
<Parameter Name="value" Type="Windows.Foundation.Point" />
104104
</Parameters>
105105
<Docs>
106-
<param name="value">To be added.</param>
107-
<summary>To be added.</summary>
108-
<returns>To be added.</returns>
106+
<param name="value">The point to compare to this instance.</param>
107+
<summary>Compares two <see cref="T:Windows.Foundation.Point" /> structs for equality.</summary>
108+
<returns><see langword="true" /> if both <see cref="T:Windows.Foundation.Point" /> structs contain the same <see cref="P:Windows.Foundation.Point.X" /> and <see cref="P:Windows.Foundation.Point.Y" /> values; otherwise, <see langword="false" />.</returns>
109109
<remarks>To be added.</remarks>
110110
</Docs>
111111
</Member>
@@ -132,8 +132,8 @@
132132
</ReturnValue>
133133
<Parameters />
134134
<Docs>
135-
<summary>To be added.</summary>
136-
<returns>To be added.</returns>
135+
<summary>Returns the hash code for this <see cref="T:Windows.Foundation.Point" />.</summary>
136+
<returns>The hash code for this <see cref="T:Windows.Foundation.Point" /> struct.</returns>
137137
<remarks>To be added.</remarks>
138138
</Docs>
139139
</Member>
@@ -158,10 +158,10 @@
158158
<Parameter Name="point2" Type="Windows.Foundation.Point" />
159159
</Parameters>
160160
<Docs>
161-
<param name="point1">To be added.</param>
162-
<param name="point2">To be added.</param>
163-
<summary>To be added.</summary>
164-
<returns>To be added.</returns>
161+
<param name="point1">The first <see cref="T:Windows.Foundation.Point" /> struct to compare.</param>
162+
<param name="point2">The second <see cref="T:Windows.Foundation.Point" /> struct to compare.</param>
163+
<summary>Compares two <see cref="T:Windows.Foundation.Point" /> structs for equality.</summary>
164+
<returns><see langword="true" /> if both the <see cref="P:Windows.Foundation.Point.X" /> and <see cref="P:Windows.Foundation.Point.Y" /> values of <paramref name="point1" /> and <paramref name="point2" /> are equal; otherwise, <see langword="false" />.</returns>
165165
<remarks>To be added.</remarks>
166166
</Docs>
167167
</Member>
@@ -186,10 +186,10 @@
186186
<Parameter Name="point2" Type="Windows.Foundation.Point" />
187187
</Parameters>
188188
<Docs>
189-
<param name="point1">To be added.</param>
190-
<param name="point2">To be added.</param>
191-
<summary>To be added.</summary>
192-
<returns>To be added.</returns>
189+
<param name="point1">The first point to compare.</param>
190+
<param name="point2">The second point to compare.</param>
191+
<summary>Compares two <see cref="T:Windows.Foundation.Point" /> structs for inequality</summary>
192+
<returns><see langword="true" /> if <paramref name="point1" /> and <paramref name="point2" /> have different <see cref="P:Windows.Foundation.Point.X" /> or <see cref="P:Windows.Foundation.Point.Y" /> values; false if <paramref name="point1" /> and <paramref name="point2" /> have the same <see cref="P:Windows.Foundation.Point.X" /> and <see cref="P:Windows.Foundation.Point.Y" /> values.</returns>
193193
<remarks>To be added.</remarks>
194194
</Docs>
195195
</Member>
@@ -221,10 +221,10 @@
221221
<Parameter Name="provider" Type="System.IFormatProvider" />
222222
</Parameters>
223223
<Docs>
224-
<param name="format">To be added.</param>
225-
<param name="provider">To be added.</param>
226-
<summary>To be added.</summary>
227-
<returns>To be added.</returns>
224+
<param name="format">The string specifying the format to use, or <see langword="null" /> to use the default format defined for the type of the <see cref="T:System.IFormattable" /> implementation.</param>
225+
<param name="provider">An object that provides formatting information for the value, or <see langword="null" /> to obtain the numeric format information from the current culture.</param>
226+
<summary>For a description of this member, see <see cref="M:System.IFormattable.ToString(System.String,System.IFormatProvider)" />.</summary>
227+
<returns>A string containing the value of the current instance in the specified format.</returns>
228228
<remarks>To be added.</remarks>
229229
</Docs>
230230
</Member>
@@ -251,8 +251,8 @@
251251
</ReturnValue>
252252
<Parameters />
253253
<Docs>
254-
<summary>To be added.</summary>
255-
<returns>To be added.</returns>
254+
<summary>Creates a <see cref="T:System.String" /> representation of this <see cref="T:Windows.Foundation.Point" />.</summary>
255+
<returns>A <see cref="T:System.String" /> containing the <see cref="P:Windows.Foundation.Point.X" /> and <see cref="P:Windows.Foundation.Point.Y" /> values of this <see cref="T:Windows.Foundation.Point" /> struct.</returns>
256256
<remarks>To be added.</remarks>
257257
</Docs>
258258
</Member>
@@ -276,9 +276,9 @@
276276
<Parameter Name="provider" Type="System.IFormatProvider" />
277277
</Parameters>
278278
<Docs>
279-
<param name="provider">To be added.</param>
280-
<summary>To be added.</summary>
281-
<returns>To be added.</returns>
279+
<param name="provider">Culture-specific formatting information.</param>
280+
<summary>Creates a <see cref="T:System.String" /> representation of this <see cref="T:Windows.Foundation.Point" />.</summary>
281+
<returns>A <see cref="T:System.String" /> containing the <see cref="P:Windows.Foundation.Point.X" /> and <see cref="P:Windows.Foundation.Point.Y" /> values of this <see cref="T:Windows.Foundation.Point" /> struct.</returns>
282282
<remarks>To be added.</remarks>
283283
</Docs>
284284
</Member>
@@ -299,8 +299,8 @@
299299
<ReturnType>System.Double</ReturnType>
300300
</ReturnValue>
301301
<Docs>
302-
<summary>To be added.</summary>
303-
<value>To be added.</value>
302+
<summary>Gets or sets the <see cref="P:Windows.Foundation.Point.X" />-coordinate value of this <see cref="T:Windows.Foundation.Point" /> struct.</summary>
303+
<value>The <see cref="P:Windows.Foundation.Point.X" />-coordinate value of this <see cref="T:Windows.Foundation.Point" /> struct. The default value is 0.</value>
304304
<remarks>To be added.</remarks>
305305
</Docs>
306306
</Member>
@@ -321,10 +321,10 @@
321321
<ReturnType>System.Double</ReturnType>
322322
</ReturnValue>
323323
<Docs>
324-
<summary>To be added.</summary>
325-
<value>To be added.</value>
324+
<summary>Gets or sets the <see cref="P:Windows.Foundation.Point.Y" />-coordinate value of this <see cref="T:Windows.Foundation.Point" />.</summary>
325+
<value>The <see cref="P:Windows.Foundation.Point.Y" />-coordinate value of this <see cref="T:Windows.Foundation.Point" /> struct. The default value is 0.</value>
326326
<remarks>To be added.</remarks>
327327
</Docs>
328328
</Member>
329329
</Members>
330-
</Type>
330+
</Type>

0 commit comments

Comments
 (0)