Skip to content

Commit e2b4d05

Browse files
authored
update parameters (#7504)
1 parent e1ef08b commit e2b4d05

File tree

12 files changed

+2570
-2580
lines changed

12 files changed

+2570
-2580
lines changed

xml/System/AppDomain.xml

Lines changed: 1701 additions & 1701 deletions
Large diffs are not rendered by default.

xml/System/Attribute.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2674,7 +2674,7 @@ When implementing your own class derived from <xref:System.Attribute>, you can o
26742674
<Parameter Name="pcTInfo" Type="System.UInt32" RefType="out" Index="0" FrameworkAlternate="netframework-1.1;netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;xamarinmac-3.0" />
26752675
</Parameters>
26762676
<Docs>
2677-
<param name="pcTInfo">Points to a location that receives the number of type information interfaces provided by the object.</param>
2677+
<param name="pcTInfo">When this method returns, points to a location that receives the number of type information interfaces provided by the object.</param>
26782678
<summary>Retrieves the number of type information interfaces that an object provides (either 0 or 1).</summary>
26792679
<remarks>
26802680
<format type="text/markdown"><![CDATA[

xml/System/Convert.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20880,8 +20880,8 @@
2088020880
</Parameters>
2088120881
<Docs>
2088220882
<param name="chars">A span containing the string representation that is encoded with base-64 digits.</param>
20883-
<param name="bytes">When this method returns <see langword="true" />, the converted 8-bit unsigned integers. When this method returns <see langword="false" />, either the span remains unmodified or contains an incomplete conversion of <paramref name="chars" />, up to the last valid character.</param>
20884-
<param name="bytesWritten">When this method returns, the number of bytes that were written in <paramref name="bytes" />.</param>
20883+
<param name="bytes">The span in which to write the converted 8-bit unsigned integers. If this method returns <see langword="false" />, either the span remains unmodified or contains an incomplete conversion of <paramref name="chars" />, up to the last valid character.</param>
20884+
<param name="bytesWritten">When this method returns, contains the number of bytes that were written in <paramref name="bytes" />.</param>
2088520885
<summary>Tries to convert the specified span containing a string representation that is encoded with base-64 digits into a span of 8-bit unsigned integers.</summary>
2088620886
<returns>
2088720887
<see langword="true" /> if the conversion was successful; otherwise, <see langword="false" />.</returns>
@@ -20923,8 +20923,8 @@
2092320923
</Parameters>
2092420924
<Docs>
2092520925
<param name="s">The string representation that is encoded with base-64 digits.</param>
20926-
<param name="bytes">When this method returns <see langword="true" />, the converted 8-bit unsigned integers. When this method returns <see langword="false" />, either the span remains unmodified or contains an incomplete conversion of <paramref name="s" />, up to the last valid character.</param>
20927-
<param name="bytesWritten">When this method returns, the number of bytes that were written in <paramref name="bytes" />.</param>
20926+
<param name="bytes">The span in which to write the converted 8-bit unsigned integers. When this method returns <see langword="false" />, either the span remains unmodified or contains an incomplete conversion of <paramref name="s" />, up to the last valid character.</param>
20927+
<param name="bytesWritten">When this method returns, contains the number of bytes that were written in <paramref name="bytes" />.</param>
2092820928
<summary>Tries to convert the specified string representation that is encoded with base-64 digits into a span of 8-bit unsigned integers.</summary>
2092920929
<returns>
2093020930
<see langword="true" /> if the conversion was successful; otherwise, <see langword="false" />.</returns>
@@ -20968,8 +20968,8 @@
2096820968
</Parameters>
2096920969
<Docs>
2097020970
<param name="bytes">A read-only span of 8-bit unsigned integers.</param>
20971-
<param name="chars">When this method returns <see langword="true" />, a span containing the string representation in base 64 of the elements in <paramref name="bytes" />. If the length of <paramref name="bytes" /> is 0, or when this method returns <paramref name="false" />, nothing is written into this parameter.</param>
20972-
<param name="charsWritten">When this method returns, the total number of characters written into <paramref name="chars" />.</param>
20971+
<param name="chars">The span in which to write the string representation in base 64 of the elements in <paramref name="bytes" />. If the length of <paramref name="bytes" /> is 0, or when this method returns <paramref name="false" />, nothing is written into this parameter.</param>
20972+
<param name="charsWritten">When this method returns, contains the total number of characters written into <paramref name="chars" />.</param>
2097320973
<param name="options">One of the enumeration values that specify whether to insert line breaks in the return value. The default value is <see cref="F:System.Base64FormattingOptions.None" />.</param>
2097420974
<summary>Tries to convert the 8-bit unsigned integers inside the specified read-only span into their equivalent string representation that is encoded with base-64 digits. You can optionally specify whether to insert line breaks in the return value.</summary>
2097520975
<returns>

0 commit comments

Comments
 (0)