Skip to content

Commit 0b73725

Browse files
authored
System.Text.RegularExpressions (#10160)
1 parent 1a8e027 commit 0b73725

File tree

2 files changed

+102
-39
lines changed

2 files changed

+102
-39
lines changed

xml/System.Text.RegularExpressions/Regex+ValueSplitEnumerator.xml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</Attribute>
3232
</Attributes>
3333
<Docs>
34-
<summary>To be added.</summary>
34+
<summary>Represents an enumerator containing the set of splits around successful matches found by iteratively applying a regular expression pattern to the input span.</summary>
3535
<remarks>To be added.</remarks>
3636
</Docs>
3737
<Members>
@@ -57,9 +57,10 @@
5757
<ReturnType>System.Range</ReturnType>
5858
</ReturnValue>
5959
<Docs>
60-
<summary>To be added.</summary>
60+
<summary>Gets the <see cref="T:System.Text.RegularExpressions.ValueMatch" /> element at the current position of the enumerator.</summary>
6161
<value>To be added.</value>
6262
<remarks>To be added.</remarks>
63+
<exception cref="T:System.InvalidOperationException">Enumeration has either not started or has already finished.</exception>
6364
</Docs>
6465
</Member>
6566
<Member MemberName="GetEnumerator">
@@ -85,8 +86,8 @@
8586
</ReturnValue>
8687
<Parameters />
8788
<Docs>
88-
<summary>To be added.</summary>
89-
<returns>To be added.</returns>
89+
<summary>Provides an enumerator that iterates through the splits in the input span.</summary>
90+
<returns>A copy of this enumerator.</returns>
9091
<remarks>To be added.</remarks>
9192
</Docs>
9293
</Member>
@@ -107,8 +108,9 @@
107108
</ReturnValue>
108109
<Parameters />
109110
<Docs>
110-
<summary>To be added.</summary>
111-
<returns>To be added.</returns>
111+
<summary>Advances the enumerator to the next split.</summary>
112+
<returns>
113+
<see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator cannot find additional matches.</returns>
112114
<remarks>To be added.</remarks>
113115
</Docs>
114116
</Member>

0 commit comments

Comments
 (0)