Skip to content

Commit 0c89567

Browse files
carlossanlopThraka
authored andcommitted
Document TryGetValue from System.Collections.ObjectModel.KeyedCollection (#3431)
* Document TryGetValue from System.Collections.ObjectModel.KeyedCollection * Update KeyedCollection`2.xml
1 parent 517c34c commit 0c89567

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

xml/System.Collections.ObjectModel/KeyedCollection`2.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,11 +1122,12 @@
11221122
<Parameter Name="item" Type="TItem" RefType="out" Index="1" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
11231123
</Parameters>
11241124
<Docs>
1125-
<param name="key">To be added.</param>
1126-
<param name="item">To be added.</param>
1127-
<summary>To be added.</summary>
1128-
<returns>To be added.</returns>
1125+
<param name="key">The key of the item to search in the collection.</param>
1126+
<param name="item">When this method returns <see langword="true" />, the item from the collection that matches the provided key; when this method returns <see langword="false" />, the <see langword="default" /> value for the type of the collection.</param>
1127+
<summary>Tries to get an item from the collection using the specified key.</summary>
1128+
<returns><see langword="true" /> if an item for the specified key was found in the collection; otherwise, <see langword="false" />.</returns>
11291129
<remarks>To be added.</remarks>
1130+
<exception cref="T:System.ArgumentNullException"><paramref name="key" /> is <see langword="null" />.</exception>
11301131
</Docs>
11311132
</Member>
11321133
</Members>

0 commit comments

Comments
 (0)