Skip to content

Commit 0c9d2d0

Browse files
authored
Merge pull request #3241 from dotnet/master
Update Live with current Master
2 parents ed4682d + d60b2ac commit 0c9d2d0

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

xml/System.Data/DataRowView.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,15 @@
539539
<summary>Gets a value indicating whether the current <see cref="T:System.Data.DataRowView" /> is identical to the specified object.</summary>
540540
<returns>
541541
<see langword="true" /> if <paramref name="object" /> is a <see cref="T:System.Data.DataRowView" /> and it returns the same row as the current <see cref="T:System.Data.DataRowView" />; otherwise <see langword="false" />.</returns>
542-
<remarks>To be added.</remarks>
542+
<remarks>
543+
<format type="text/markdown"><![CDATA[
544+
545+
## Remarks
546+
547+
This method checks for reference equality instead of checking whether <xref:System.Data.DataRowView.DataView> or <xref:System.Data.DataRowView.Row> are equivalent.
548+
549+
]]></format>
550+
</remarks>
543551
</Docs>
544552
</Member>
545553
<Member MemberName="GetHashCode">
@@ -766,6 +774,7 @@
766774
-or-
767775

768776
The <see cref="P:System.Data.DataRowView.DataView" /> doesn't allow edits and <see cref="T:System.Data.DataRowView" /> is not new.</exception>
777+
<exception cref="T:System.Data.DataException">Unmatched <paramref name="property" /> when setting a value.</exception>
769778
</Docs>
770779
</Member>
771780
<Member MemberName="PropertyChanged">

xml/System.IO.Enumeration/FileSystemName.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,17 @@
8787
<summary> Verifies if the given Win32 expression matches the given name. Supports the following wildcards: '*', '?', '&lt;', '&gt;', '"'. The backslash character '\' escapes.</summary>
8888
<returns>
8989
<see langword="true" /> if the given expression matches the given name; otherwise, <see langword="false" />.</returns>
90-
<remarks>To be added.</remarks>
90+
<remarks>
91+
<format type="text/markdown"><![CDATA[
92+
93+
## Remarks
94+
95+
The syntax of the `expression` parameter is based on the syntax used by <xref:System.IO.FileSystemWatcher>, which is based on [RtlIsNameInExpression](/windows/win32/devnotes/rtlisnameinexpression), which defines the rules for matching DOS wildcards (`'*'`, `'?'`, `'<'`, `'>'`, `'"'`).
96+
97+
Matching will not correspond to Win32 behavior unless you transform the expression using <xref:System.IO.Enumeration.FileSystemName.TranslateWin32Expression(System.String)>.
98+
99+
]]></format>
100+
</remarks>
91101
</Docs>
92102
</Member>
93103
<Member MemberName="TranslateWin32Expression">

xml/System/ReadOnlySpan`1.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,8 @@ This method returns `default` when `array` is `null`.
379379
</ReturnValue>
380380
<Parameters />
381381
<Docs>
382-
<summary>To be added.</summary>
383-
<returns>To be added.</returns>
382+
<summary>A read-only reference to an object of type T that can be used for pinning, and is required to support the use of span within a fixed statement.</summary>
383+
<returns>A reference to the element of the span at index 0, or <see langword="null" /> if the span is empty.</returns>
384384
<remarks>To be added.</remarks>
385385
</Docs>
386386
</Member>

0 commit comments

Comments
 (0)