Skip to content

Commit 86c0604

Browse files
Merge pull request #10262 from dotnet/main
Merge main into live
2 parents 6b73a63 + 8598ae2 commit 86c0604

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

xml/System.Buffers.Text/Base64Url.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</Base>
1515
<Interfaces />
1616
<Docs>
17-
<summary>To be added.</summary>
17+
<summary>Converts between binary data and URL-safe ASCII encoded text that's represented in Base64Url characters.</summary>
1818
<remarks>To be added.</remarks>
1919
</Docs>
2020
<Members>
@@ -525,9 +525,9 @@
525525
<Parameter Name="bytesLength" Type="System.Int32" />
526526
</Parameters>
527527
<Docs>
528-
<param name="bytesLength">To be added.</param>
528+
<param name="bytesLength">The size of the input span.</param>
529529
<summary>Returns the length (in bytes) of the result if you were to encode binary data within a byte span of size <paramref name="bytesLength" />.</summary>
530-
<returns>To be added.</returns>
530+
<returns>The length (in bytes) of the encoded result.</returns>
531531
<remarks>To be added.</remarks>
532532
<exception cref="T:System.ArgumentOutOfRangeException">
533533
<paramref name="bytesLength" /> is less than 0 or greater than 1610612733.</exception>
@@ -552,9 +552,9 @@
552552
<Parameter Name="base64Length" Type="System.Int32" />
553553
</Parameters>
554554
<Docs>
555-
<param name="base64Length">To be added.</param>
555+
<param name="base64Length">The size of the input span.</param>
556556
<summary>Returns the maximum length (in bytes) of the result if you were to decode base 64 encoded text from a span of size <paramref name="base64Length" />.</summary>
557-
<returns>To be added.</returns>
557+
<returns>The maximum length (in bytes) of the decoded result.</returns>
558558
<remarks>To be added.</remarks>
559559
<exception cref="T:System.ArgumentOutOfRangeException">The specified <paramref name="base64Length" /> is less than 0.</exception>
560560
</Docs>

xml/System.Runtime.CompilerServices/ParamCollectionAttribute.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</AssemblyInfo>
3838
<Parameters />
3939
<Docs>
40-
<summary>To be added.</summary>
40+
<summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.ParamCollectionAttribute" />class.</summary>
4141
<remarks>To be added.</remarks>
4242
</Docs>
4343
</Member>

xml/System.Text/StringBuilder.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7035,7 +7035,7 @@ In .NET Core and in the .NET Framework 4.0 and later versions, when you instanti
70357035
<param name="oldValue">The read-only character span to replace.</param>
70367036
<param name="newValue">The read-only character span to replace <paramref name="oldValue" /> with.</param>
70377037
<summary>Replaces all instances of one read-only character span with another in this builder.</summary>
7038-
<returns>To be added.</returns>
7038+
<returns>A reference to this instance with <paramref name="oldChar" /> replaced by <paramref name="newChar" />.</returns>
70397039
<remarks>If <paramref name="newValue" /> is empty, instances of <paramref name="oldValue" /> are removed from this builder.</remarks>
70407040
</Docs>
70417041
</Member>
@@ -7233,7 +7233,7 @@ In .NET Core and in the .NET Framework 4.0 and later versions, when you instanti
72337233
<param name="startIndex">The index to start in this builder.</param>
72347234
<param name="count">The number of characters to read in this builder.</param>
72357235
<summary>Replaces all instances of one read-only character span with another in part of this builder.</summary>
7236-
<returns>To be added.</returns>
7236+
<returns>A reference to this instance with <paramref name="oldChar" /> replaced by <paramref name="newChar" />.</returns>
72377237
<remarks>If <paramref name="newValue" /> is empty, instances of <paramref name="oldValue" /> are removed from this builder.</remarks>
72387238
</Docs>
72397239
</Member>

xml/System/TimeProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</Attributes>
3434
<Docs>
3535
<summary>Provides an abstraction for time.</summary>
36-
<remarks>To be added.</remarks>
36+
<remarks>To make it easier to test time-dependent code, you can use <see cref="T:Microsoft.Extensions.Time.Testing.FakeTimeProvider" /> from the Microsoft.Extensions.Time.Testing package.</remarks>
3737
</Docs>
3838
<Members>
3939
<Member MemberName=".ctor">

0 commit comments

Comments
 (0)