Skip to content

Commit 7668d4b

Browse files
authored
add missing return value (#2314)
* add missing return value * add missing return value * add missing return value * add missing return value * add missing return value * Apply suggestions from peer review Co-Authored-By: mairaw <[email protected]>
1 parent 8a237f5 commit 7668d4b

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

xml/Microsoft.Build.Tasks.Deployment.ManifestUtilities/AssemblyIdentity.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@
708708
<Parameters />
709709
<Docs>
710710
<summary>Returns the full ClickOnce assembly identity.</summary>
711-
<returns>To be added.</returns>
711+
<returns>The full ClickOnce assembly identity.</returns>
712712
<remarks>To be added.</remarks>
713713
</Docs>
714714
</Member>
@@ -1044,4 +1044,4 @@
10441044
</Docs>
10451045
</Member>
10461046
</Members>
1047-
</Type>
1047+
</Type>

xml/Microsoft.Build.Tasks.Hosting/ICscHostObject3.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,11 @@
5656
</Parameters>
5757
<Docs>
5858
<param name="applicationConfiguration">The application configuration.</param>
59-
<summary>Set the application configuration.</summary>
60-
<returns>To be added.</returns>
59+
<summary>Sets the application configuration.</summary>
60+
<returns>
61+
<see langword="true" /> if the method was successful; otherwise, <see langword="false" />.</returns>
6162
<remarks>To be added.</remarks>
6263
</Docs>
6364
</Member>
6465
</Members>
65-
</Type>
66+
</Type>

xml/Microsoft.Build.Tasks.Hosting/IVbcHostObject2.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,12 @@
112112
<Parameter Name="win32Manifest" Type="System.String" />
113113
</Parameters>
114114
<Docs>
115-
<param name="win32Manifest">The win32 manifest</param>
115+
<param name="win32Manifest">The Win32 manifest.</param>
116116
<summary>Sets a Win32 manifest to use.</summary>
117-
<returns>To be added.</returns>
117+
<returns>
118+
<see langword="true" /> if the method was successful; otherwise, <see langword="false" />.</returns>
118119
<remarks>To be added.</remarks>
119120
</Docs>
120121
</Member>
121122
</Members>
122-
</Type>
123+
</Type>

xml/Microsoft.Build.Tasks.Xaml/XamlDataDrivenToolTask.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@
399399
<param name="switchMap">The switch map.</param>
400400
<param name="value">The value of the property.</param>
401401
<summary>Checks the value a property is set to, and finds the corresponding switch.</summary>
402-
<returns>To be added.</returns>
402+
<returns>The switch that \<paramref name="value" /> is mapped to.</returns>
403403
<remarks>To be added.</remarks>
404404
</Docs>
405405
</Member>
@@ -533,4 +533,4 @@
533533
</Docs>
534534
</Member>
535535
</Members>
536-
</Type>
536+
</Type>

xml/System.Buffers/BuffersExtensions.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
<typeparam name="T">The type of the items in the <see cref="T:System.Buffers.ReadOnlySequence`1" />.</typeparam>
136136
<param name="sequence">The read-only sequence to convert to an array.</param>
137137
<summary>Converts the <see cref="T:System.Buffers.ReadOnlySequence`1" /> to an array.</summary>
138-
<returns>To be added.</returns>
138+
<returns>An array containing the data in the current read-only sequence.</returns>
139139
<remarks>To be added.</remarks>
140140
</Docs>
141141
</Member>
@@ -176,4 +176,4 @@
176176
</Docs>
177177
</Member>
178178
</Members>
179-
</Type>
179+
</Type>

0 commit comments

Comments
 (0)