|
105 | 105 | <Docs>
|
106 | 106 | <param name="key">A string with the name of the captured group to locate.</param>
|
107 | 107 | <summary>Determines whether the group collection contains a captured group identified by the specified name.</summary>
|
108 |
| - <returns><see langword="true"/> if the group collection contains a captured group identified by the specified key; <see langword="false" /> otherwise.</returns> |
| 108 | + <returns><see langword="true"/> if the group collection contains a captured group identified by <paramref name="key" />; <see langword="false" /> otherwise.</returns> |
109 | 109 | <remarks>To be added.</remarks>
|
110 | 110 | </Docs>
|
111 | 111 | </Member>
|
|
210 | 210 | <Parameter Name="arrayIndex" Type="System.Int32" Index="1" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
|
211 | 211 | </Parameters>
|
212 | 212 | <Docs>
|
213 |
| - <param name="array">The one-dimensional <see cref="T:System.Text.RegularExpressions.Group[]" /> array that is the destination of the elements copied from the group collection. The array must have zero-based indexing.</param> |
214 |
| - <param name="arrayIndex">The zero-based index in the <see cref="T:System.Text.RegularExpressions.Group[]" /> array at which copying begins.</param> |
| 213 | + <param name="array">The one-dimensional array that is the destination of the elements copied from the group collection. The array must have zero-based indexing.</param> |
| 214 | + <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param> |
215 | 215 | <summary>Copies the elements of the group collection to a <see cref="T:System.Text.RegularExpressions.Group[]" /> array, starting at a particular array index.</summary>
|
216 | 216 | <remarks>To be added.</remarks>
|
217 | 217 | <exception cref="T:System.ArgumentNullException"><paramref name="array" /> is null.</exception>
|
218 | 218 | <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex" /> is less than zero.
|
219 | 219 |
|
220 | 220 | -or-
|
221 | 221 |
|
222 |
| -<paramref name="arrayIndex" /> is greater than the length of <see cref="P:System.Text.RegularExpressions.Group[]" />.</exception> |
223 |
| - <exception cref="T:System.ArgumentException">The length of the <paramref name="array" /> - the <paramref name="arrayIndex" /> is less than the group collection count.</exception> |
| 222 | +<paramref name="arrayIndex" /> is greater than the length of <paramref name="array" />.</exception> |
| 223 | + <exception cref="T:System.ArgumentException">The length of <paramref name="array" /> - <paramref name="arrayIndex" /> is less than the group collection count.</exception> |
224 | 224 | </Docs>
|
225 | 225 | </Member>
|
226 | 226 | <Member MemberName="Count">
|
|
586 | 586 | </ReturnValue>
|
587 | 587 | <Docs>
|
588 | 588 | <summary>Gets a string enumeration that contains the name keys of the group collection.</summary>
|
589 |
| - <value>A string enumeration.</value> |
| 589 | + <value>The name keys of the group collection.</value> |
590 | 590 | <remarks>To be added.</remarks>
|
591 | 591 | </Docs>
|
592 | 592 | </Member>
|
|
671 | 671 | <Parameter Name="item" Type="System.Text.RegularExpressions.Group" Index="0" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
|
672 | 672 | </Parameters>
|
673 | 673 | <Docs>
|
674 |
| - <param name="item">This method is not supported.</param> |
675 |
| - <summary>Implementation from <see cref="T:System.Collections.Generic.ICollection" />. This method is not supported.</summary> |
| 674 | + <param name="item">The group to add to the collection.</param> |
| 675 | + <summary>Adds a <see cref="T:System.Text.RegularExpressions.Group" /> to the collection. Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary> |
676 | 676 | <remarks>To be added.</remarks>
|
677 | 677 | <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
|
678 | 678 | </Docs>
|
|
704 | 704 | </ReturnValue>
|
705 | 705 | <Parameters />
|
706 | 706 | <Docs>
|
707 |
| - <summary>Implementation from <see cref="T:System.Collections.Generic.ICollection" />. This method is not supported.</summary> |
| 707 | + <summary>Clears the collection. Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary> |
708 | 708 | <remarks>To be added.</remarks>
|
709 | 709 | <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
|
710 | 710 | </Docs>
|
|
741 | 741 | <param name="item">The group to locate in the group collection.</param>
|
742 | 742 | <summary>Determines whether the group collection contains a specific group item.</summary>
|
743 | 743 | <returns><see langword="true" /> if the group item is found in the group collection; <see langword="false" /> otherwise.</returns>
|
744 |
| - <remarks>To be added.</remarks> |
| 744 | + <remarks> |
| 745 | + <format type="text/markdown"><![CDATA[ |
| 746 | +
|
| 747 | +This member is an explicit interface member implementation. It can be used only when the <xref:System.Text.RegularExpressions.GroupCollection> instance is cast to an <xref:System.Collections.Generic.ICollection%601> interface. |
| 748 | +
|
| 749 | + ]]></format> |
| 750 | + </remarks> |
745 | 751 | </Docs>
|
746 | 752 | </Member>
|
747 | 753 | <Member MemberName="System.Collections.Generic.ICollection<System.Text.RegularExpressions.Group>.Remove">
|
|
773 | 779 | <Parameter Name="item" Type="System.Text.RegularExpressions.Group" Index="0" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
|
774 | 780 | </Parameters>
|
775 | 781 | <Docs>
|
776 |
| - <param name="item">This method is not supported.</param> |
777 |
| - <summary>Implementation from <see cref="T:System.Collections.Generic.ICollection" />. This method is not supported.</summary> |
778 |
| - <returns>This method is not supported.</returns> |
| 782 | + <param name="item">The group to remove.</param> |
| 783 | + <summary>Removes a <see cref="T:System.Text.RegularExpressions.Group" /> from the collection. Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary> |
| 784 | + <returns>This method is not supported. No value is returned.</returns> |
779 | 785 | <remarks>To be added.</remarks>
|
780 | 786 | <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
|
781 | 787 | </Docs>
|
|
806 | 812 | <Parameters />
|
807 | 813 | <Docs>
|
808 | 814 | <summary>Provides an enumerator that iterates through the group collection.</summary>
|
809 |
| - <returns>An enumerator that contains all <see cref="T:System.Text.RegularExpressions.Group" /> objects in the group collection.</returns> |
| 815 | + <returns>An enumerator that contains all names and objects in the <see cref="T:System.Text.RegularExpressions.Group" /> collection.</returns> |
810 | 816 | <remarks>
|
811 | 817 | <format type="text/markdown">
|
812 | 818 | <![CDATA[
|
813 | 819 |
|
814 | 820 | ## Remarks
|
815 | 821 |
|
816 |
| -Instead of calling the <xref:System.Text.RegularExpressions.GroupCollection.GetEnumerator%2A> method to retrieve an enumerator that lets you iterate through the <xref:System.Text.RegularExpressions.Group> objects in the collection, you should use the group iteration construct (such as `foreach` in C# and `For Each`…`Next` in Visual Basic) that is provided by your programming language. |
| 822 | +
|
| 823 | +Instead of calling this method to retrieve an enumerator that lets you iterate through the <xref:System.Text.RegularExpressions.Group> objects in the collection, you should use the group iteration construct (such as `foreach` in C# and `For Each`…`Next` in Visual Basic) that is provided by your programming language. |
817 | 824 |
|
818 | 825 | ]]>
|
819 | 826 | </format>
|
@@ -855,7 +862,7 @@ Instead of calling the <xref:System.Text.RegularExpressions.GroupCollection.GetE
|
855 | 862 |
|
856 | 863 | ## Remarks
|
857 | 864 |
|
858 |
| -Instead of calling the <xref:System.Text.RegularExpressions.GroupCollection.GetEnumerator%2A> method to retrieve an enumerator that lets you iterate through the <xref:System.Text.RegularExpressions.Group> objects in the collection, you should use the group iteration construct (such as `foreach` in C# and `For Each`…`Next` in Visual Basic) that is provided by your programming language. |
| 865 | +Instead of calling this method to retrieve an enumerator that lets you iterate through the <xref:System.Text.RegularExpressions.Group> objects in the collection, you should use the group iteration construct (such as `foreach` in C# and `For Each`…`Next` in Visual Basic) that is provided by your programming language. |
859 | 866 |
|
860 | 867 | ]]>
|
861 | 868 | </format>
|
@@ -894,7 +901,13 @@ Instead of calling the <xref:System.Text.RegularExpressions.GroupCollection.GetE
|
894 | 901 | <param name="item">The group to locate in the group collection.</param>
|
895 | 902 | <summary>Determines the index of a specific group in the group collection.</summary>
|
896 | 903 | <returns>The index of the <paramref. name="item" /> if found; otherwise, -1.</returns>
|
897 |
| - <remarks>To be added.</remarks> |
| 904 | + <remarks> |
| 905 | + <format type="text/markdown"><![CDATA[ |
| 906 | +
|
| 907 | +This member is an explicit interface member implementation. It can be used only when the <xref:System.Text.RegularExpressions.GroupCollection> instance is cast to an <xref:System.Collections.Generic.IList%601> interface. |
| 908 | +
|
| 909 | + ]]></format> |
| 910 | + </remarks> |
898 | 911 | </Docs>
|
899 | 912 | </Member>
|
900 | 913 | <Member MemberName="System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.Insert">
|
@@ -927,9 +940,9 @@ Instead of calling the <xref:System.Text.RegularExpressions.GroupCollection.GetE
|
927 | 940 | <Parameter Name="item" Type="System.Text.RegularExpressions.Group" Index="1" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
|
928 | 941 | </Parameters>
|
929 | 942 | <Docs>
|
930 |
| - <param name="index">This method is not supported.</param> |
931 |
| - <param name="item">This method is not supported.</param> |
932 |
| - <summary>Implementation from <see cref="T:System.Collections.Generic.IList" />. This method is not supported.</summary> |
| 943 | + <param name="index">The position at which to insert the group.</param> |
| 944 | + <param name="item">The group to insert.</param> |
| 945 | + <summary>Inserts a <see cref="T:System.Text.RegularExpressions.Group" /> into the collection. Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary> |
933 | 946 | <remarks>To be added.</remarks>
|
934 | 947 | <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
|
935 | 948 | </Docs>
|
@@ -964,10 +977,16 @@ Instead of calling the <xref:System.Text.RegularExpressions.GroupCollection.GetE
|
964 | 977 | <Parameter Name="index" Type="System.Int32" Index="0" FrameworkAlternate="netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
|
965 | 978 | </Parameters>
|
966 | 979 | <Docs>
|
967 |
| - <param name="index">The zero-index position of the group in the group collection.</param> |
968 |
| - <summary>Gets the group in the desired position.</summary> |
| 980 | + <param name="index">The zero-based index of the group in the group collection.</param> |
| 981 | + <summary>Gets the group at the specified position in the collection.</summary> |
969 | 982 | <value>The group in the desired position.</value>
|
970 |
| - <remarks>To be added.</remarks> |
| 983 | + <remarks> |
| 984 | + <format type="text/markdown"><![CDATA[ |
| 985 | +
|
| 986 | +This member is an explicit interface member implementation. It can be used only when the <xref:System.Text.RegularExpressions.GroupCollection> instance is cast to an <xref:System.Collections.Generic.IList%601> interface. |
| 987 | +
|
| 988 | + ]]></format> |
| 989 | + </remarks> |
971 | 990 | <exception cref="T:System.NotSupportedException">Cannot set an item. This is a read-only collection.</exception>
|
972 | 991 | </Docs>
|
973 | 992 | </Member>
|
|
0 commit comments