PR-5360
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Text.RegularExpressions.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Text.RegularExpressions</name>
5   </assembly>
6   <members>
7     <member name="T:System.Text.RegularExpressions.Capture">
8       <summary>Represents the results from a single successful subexpression capture.</summary>
9     </member>
10     <member name="M:System.Text.RegularExpressions.Capture.ToString">
11       <summary>Retrieves the captured substring from the input string by calling the <see cref="P:System.Text.RegularExpressions.Capture.Value" /> property.</summary>
12       <returns>The substring that was captured by the match.</returns>
13     </member>
14     <member name="P:System.Text.RegularExpressions.Capture.Index">
15       <summary>The position in the original string where the first character of the captured substring is found.</summary>
16       <returns>The zero-based starting position in the original string where the captured substring is found.</returns>
17     </member>
18     <member name="P:System.Text.RegularExpressions.Capture.Length">
19       <summary>Gets the length of the captured substring.</summary>
20       <returns>The length of the captured substring.</returns>
21     </member>
22     <member name="P:System.Text.RegularExpressions.Capture.Value">
23       <summary>Gets the captured substring from the input string.</summary>
24       <returns>The substring that is captured by the match.</returns>
25     </member>
26     <member name="P:System.Text.RegularExpressions.Capture.ValueSpan">
27       <summary>Gets the captured span from the input string.</summary>
28       <returns>The span that is captured by the match.</returns>
29     </member>
30     <member name="T:System.Text.RegularExpressions.CaptureCollection">
31       <summary>Represents the set of captures made by a single capturing group. The collection is immutable (read-only) and has no public constructor.</summary>
32     </member>
33     <member name="M:System.Text.RegularExpressions.CaptureCollection.CopyTo(System.Array,System.Int32)">
34       <summary>Copies all the elements of the collection to the given array beginning at the given index.</summary>
35       <param name="array">The array the collection is to be copied into.</param>
36       <param name="arrayIndex">The position in the destination array where copying is to begin.</param>
37       <exception cref="T:System.ArgumentNullException">
38         <paramref name="array" /> is <see langword="null" />.</exception>
39       <exception cref="T:System.ArgumentOutOfRangeException">
40         <paramref name="arrayIndex" /> is outside the bounds of <paramref name="array" />.  
41   
42  -or-  
43   
44  <paramref name="arrayIndex" /> plus <see cref="P:System.Text.RegularExpressions.CaptureCollection.Count" /> is outside the bounds of <paramref name="array" />.</exception>
45     </member>
46     <member name="M:System.Text.RegularExpressions.CaptureCollection.CopyTo(System.Text.RegularExpressions.Capture[],System.Int32)">
47       <summary>Copies the elements of the collection to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
48       <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the collection. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
49       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
50       <exception cref="T:System.ArgumentNullException">
51         <paramref name="array" /> is <see langword="null" />.</exception>
52       <exception cref="T:System.ArgumentOutOfRangeException">
53         <paramref name="arrayIndex" /> is less than 0.</exception>
54       <exception cref="T:System.ArgumentException">The number of elements in the source collection is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
55     </member>
56     <member name="M:System.Text.RegularExpressions.CaptureCollection.GetEnumerator">
57       <summary>Provides an enumerator that iterates through the collection.</summary>
58       <returns>An object that contains all <see cref="T:System.Text.RegularExpressions.Capture" /> objects within the <see cref="T:System.Text.RegularExpressions.CaptureCollection" />.</returns>
59     </member>
60     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Capture}#Add(System.Text.RegularExpressions.Capture)">
61       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
62       <param name="item">The object to add to the collection.</param>
63       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
64     </member>
65     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Capture}#Clear">
66       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
67       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
68     </member>
69     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Capture}#Contains(System.Text.RegularExpressions.Capture)">
70       <summary>Determines whether the collection contains a specific value.</summary>
71       <param name="item">The object to locate in the collection.</param>
72       <returns>
73         <see langword="true" /> if <paramref name="item" /> is found in the collection; otherwise, <see langword="false" />.</returns>
74     </member>
75     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Capture}#Remove(System.Text.RegularExpressions.Capture)">
76       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
77       <param name="item">The object to remove from the collection.</param>
78       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
79       <returns>Calling this method always throws <see cref="T:System.NotSupportedException" />.</returns>
80     </member>
81     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#Generic#IEnumerable{System#Text#RegularExpressions#Capture}#GetEnumerator">
82       <summary>Returns an enumerator that iterates through the collection.</summary>
83       <returns>An enumerator that can be used to iterate through the collection.</returns>
84     </member>
85     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Capture}#IndexOf(System.Text.RegularExpressions.Capture)">
86       <summary>Determines the index of a specific item in the collection.</summary>
87       <param name="item">The object to locate in the collection.</param>
88       <returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
89     </member>
90     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Capture}#Insert(System.Int32,System.Text.RegularExpressions.Capture)">
91       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
92       <param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
93       <param name="item">The object to insert into the collection.</param>
94       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
95     </member>
96     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Capture}#RemoveAt(System.Int32)">
97       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
98       <param name="index">The zero-based index of the item to remove.</param>
99       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
100     </member>
101     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#IList#Add(System.Object)">
102       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
103       <param name="value">The object to add to the collection.</param>
104       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
105       <returns>Calling this method always throws <see cref="T:System.NotSupportedException" />.</returns>
106     </member>
107     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#IList#Clear">
108       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
109       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
110     </member>
111     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#IList#Contains(System.Object)">
112       <summary>Determines whether the collection contains a specific value.</summary>
113       <param name="value">The object to locate in the collection.</param>
114       <returns>
115         <see langword="true" /> if the <see cref="T:System.Object" /> is found in the collection; otherwise, <see langword="false" />.</returns>
116     </member>
117     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#IList#IndexOf(System.Object)">
118       <summary>Determines the index of a specific item in the collection.</summary>
119       <param name="value">The object to locate in the collection.</param>
120       <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
121     </member>
122     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
123       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
124       <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
125       <param name="value">The object to insert into the collection.</param>
126       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
127     </member>
128     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#IList#Remove(System.Object)">
129       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
130       <param name="value">The object to remove from the collection.</param>
131       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
132     </member>
133     <member name="M:System.Text.RegularExpressions.CaptureCollection.System#Collections#IList#RemoveAt(System.Int32)">
134       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
135       <param name="index">The zero-based index of the item to remove.</param>
136       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
137     </member>
138     <member name="P:System.Text.RegularExpressions.CaptureCollection.Count">
139       <summary>Gets the number of substrings captured by the group.</summary>
140       <returns>The number of items in the <see cref="T:System.Text.RegularExpressions.CaptureCollection" />.</returns>
141     </member>
142     <member name="P:System.Text.RegularExpressions.CaptureCollection.IsReadOnly">
143       <summary>Gets a value that indicates whether the collection is read only.</summary>
144       <returns>
145         <see langword="true" /> in all cases.</returns>
146     </member>
147     <member name="P:System.Text.RegularExpressions.CaptureCollection.IsSynchronized">
148       <summary>Gets a value that indicates whether access to the collection is synchronized (thread-safe).</summary>
149       <returns>
150         <see langword="false" /> in all cases.</returns>
151     </member>
152     <member name="P:System.Text.RegularExpressions.CaptureCollection.Item(System.Int32)">
153       <summary>Gets an individual member of the collection.</summary>
154       <param name="i">Index into the capture collection.</param>
155       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
156       <exception cref="T:System.ArgumentOutOfRangeException">
157         <paramref name="i" /> is less than 0 or greater than <see cref="P:System.Text.RegularExpressions.CaptureCollection.Count" />.</exception>
158       <returns>The captured substring at position <paramref name="i" /> in the collection.</returns>
159     </member>
160     <member name="P:System.Text.RegularExpressions.CaptureCollection.SyncRoot">
161       <summary>Gets an object that can be used to synchronize access to the collection.</summary>
162       <returns>An object that can be used to synchronize access to the collection.</returns>
163     </member>
164     <member name="P:System.Text.RegularExpressions.CaptureCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Capture}#Item(System.Int32)">
165       <summary>Gets the element at the specified index.</summary>
166       <param name="index">The zero-based index of the element to get.</param>
167       <returns>The element at the specified index.</returns>
168     </member>
169     <member name="P:System.Text.RegularExpressions.CaptureCollection.System#Collections#IList#IsFixedSize">
170       <summary>Gets a value indicating whether the collection has a fixed size.</summary>
171       <returns>
172         <see langword="true" />, since the collection has a fixed size.</returns>
173     </member>
174     <member name="P:System.Text.RegularExpressions.CaptureCollection.System#Collections#IList#Item(System.Int32)">
175       <summary>Gets the element at the specified index.</summary>
176       <param name="index">The zero-based index of the element to get.</param>
177       <returns>The element at the specified index.</returns>
178     </member>
179     <member name="T:System.Text.RegularExpressions.Group">
180       <summary>Represents the results from a single capturing group.</summary>
181     </member>
182     <member name="M:System.Text.RegularExpressions.Group.Synchronized(System.Text.RegularExpressions.Group)">
183       <summary>Returns a <see langword="Group" /> object equivalent to the one supplied that is safe to share between multiple threads.</summary>
184       <param name="inner">The input <see cref="T:System.Text.RegularExpressions.Group" /> object.</param>
185       <exception cref="T:System.ArgumentNullException">
186         <paramref name="inner" /> is <see langword="null" />.</exception>
187       <returns>A regular expression <see langword="Group" /> object.</returns>
188     </member>
189     <member name="P:System.Text.RegularExpressions.Group.Captures">
190       <summary>Gets a collection of all the captures matched by the capturing group, in innermost-leftmost-first order (or innermost-rightmost-first order if the regular expression is modified with the <see cref="F:System.Text.RegularExpressions.RegexOptions.RightToLeft" /> option). The collection may have zero or more items.</summary>
191       <returns>The collection of substrings matched by the group.</returns>
192     </member>
193     <member name="P:System.Text.RegularExpressions.Group.Name">
194       <summary>Returns the name of the capturing group represented by the current instance.</summary>
195       <returns>The name of the capturing group represented by the current instance.</returns>
196     </member>
197     <member name="P:System.Text.RegularExpressions.Group.Success">
198       <summary>Gets a value indicating whether the match is successful.</summary>
199       <returns>
200         <see langword="true" /> if the match is successful; otherwise, <see langword="false" />.</returns>
201     </member>
202     <member name="T:System.Text.RegularExpressions.GroupCollection">
203       <summary>Returns the set of captured groups in a single match. The collection is immutable (read-only) and has no public constructor.</summary>
204     </member>
205     <member name="M:System.Text.RegularExpressions.GroupCollection.ContainsKey(System.String)">
206       <summary>Determines whether the group collection contains a captured group identified by the specified name.</summary>
207       <param name="key">A string with the name of the captured group to locate.</param>
208       <returns>
209         <see langword="true" /> if the group collection contains a captured group identified by <paramref name="key" />; <see langword="false" /> otherwise.</returns>
210     </member>
211     <member name="M:System.Text.RegularExpressions.GroupCollection.CopyTo(System.Array,System.Int32)">
212       <summary>Copies all the elements of the collection to the given array beginning at the given index.</summary>
213       <param name="array">The array the collection is to be copied into.</param>
214       <param name="arrayIndex">The position in the destination array where the copying is to begin.</param>
215       <exception cref="T:System.ArgumentNullException">
216         <paramref name="array" /> is <see langword="null" />.</exception>
217       <exception cref="T:System.IndexOutOfRangeException">
218         <paramref name="arrayIndex" /> is outside the bounds of <paramref name="array" />.
219
220 -or-
221
222 <paramref name="arrayIndex" /> plus <see cref="P:System.Text.RegularExpressions.GroupCollection.Count" /> is outside the bounds of <paramref name="array" />.</exception>
223     </member>
224     <member name="M:System.Text.RegularExpressions.GroupCollection.CopyTo(System.Text.RegularExpressions.Group[],System.Int32)">
225       <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>
226       <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>
227       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
228       <exception cref="T:System.ArgumentNullException">
229         <paramref name="array" /> is null.</exception>
230       <exception cref="T:System.ArgumentOutOfRangeException">
231         <paramref name="arrayIndex" /> is less than zero.
232
233 -or-
234
235 <paramref name="arrayIndex" /> is greater than the length of <paramref name="array" />.</exception>
236       <exception cref="T:System.ArgumentException">The length of <paramref name="array" /> - <paramref name="arrayIndex" /> is less than the group collection count.</exception>
237     </member>
238     <member name="M:System.Text.RegularExpressions.GroupCollection.GetEnumerator">
239       <summary>Provides an enumerator that iterates through the collection.</summary>
240       <returns>An enumerator that contains all <see cref="T:System.Text.RegularExpressions.Group" /> objects in the <see cref="T:System.Text.RegularExpressions.GroupCollection" />.</returns>
241     </member>
242     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Group}#Add(System.Text.RegularExpressions.Group)">
243       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
244       <param name="item">The group to add to the collection.</param>
245       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
246     </member>
247     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Group}#Clear">
248       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
249       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
250     </member>
251     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Group}#Contains(System.Text.RegularExpressions.Group)">
252       <summary>Determines whether the group collection contains a specific group item.</summary>
253       <param name="item">The group to locate in the group collection.</param>
254       <returns>
255         <see langword="true" /> if the group item is found in the group collection; <see langword="false" /> otherwise.</returns>
256     </member>
257     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Group}#Remove(System.Text.RegularExpressions.Group)">
258       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
259       <param name="item">The group to remove.</param>
260       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
261       <returns>Calling this method always throws <see cref="T:System.NotSupportedException" />.</returns>
262     </member>
263     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String@System#Text#RegularExpressions#Group}}#GetEnumerator">
264       <summary>Provides an enumerator that iterates through the group collection.</summary>
265       <returns>An enumerator that contains all names and objects in the <see cref="T:System.Text.RegularExpressions.Group" /> collection.</returns>
266     </member>
267     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#IEnumerable{System#Text#RegularExpressions#Group}#GetEnumerator">
268       <summary>Provides an enumerator that iterates through the group collection.</summary>
269       <returns>An enumerator that contains all <see cref="T:System.Text.RegularExpressions.Group" /> objects in the group collection.</returns>
270     </member>
271     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Group}#IndexOf(System.Text.RegularExpressions.Group)">
272       <summary>Determines the index of a specific group in the group collection.</summary>
273       <param name="item">The group to locate in the group collection.</param>
274       <returns>The index of the <paramref name="item" /> if found; otherwise, -1.</returns>
275     </member>
276     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Group}#Insert(System.Int32,System.Text.RegularExpressions.Group)">
277       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
278       <param name="index">The position at which to insert the group.</param>
279       <param name="item">The group to insert.</param>
280       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
281     </member>
282     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Group}#RemoveAt(System.Int32)">
283       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
284       <param name="index">The zero-based index of the group to remove.</param>
285       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
286     </member>
287     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#IList#Add(System.Object)">
288       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
289       <param name="value">The object to add to the group collection.</param>
290       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
291       <returns>Calling this method always throws <see cref="T:System.NotSupportedException" />.</returns>
292     </member>
293     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#IList#Clear">
294       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
295       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
296     </member>
297     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#IList#Contains(System.Object)">
298       <summary>Determines whether the group collection contains a specific group item.</summary>
299       <param name="value">The group to locate in the group collection.</param>
300       <returns>
301         <see langword="true" /> if the group item is found in the group collection; <see langword="false" /> otherwise.</returns>
302     </member>
303     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#IList#IndexOf(System.Object)">
304       <summary>Determines the index of a specific group in the group collection.</summary>
305       <param name="value">The group to locate in the group collection.</param>
306       <returns>The index of the <paramref name="item" /> if found; otherwise, -1.</returns>
307     </member>
308     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
309       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
310       <param name="index">The position at which to insert the group.</param>
311       <param name="value">The group to insert.</param>
312       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
313     </member>
314     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#IList#Remove(System.Object)">
315       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
316       <param name="value">The group to remove.</param>
317       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
318     </member>
319     <member name="M:System.Text.RegularExpressions.GroupCollection.System#Collections#IList#RemoveAt(System.Int32)">
320       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
321       <param name="index">The zero-based index of the group to remove.</param>
322       <exception cref="T:System.NotSupportedException">This method is not supported. This is a read-only collection.</exception>
323     </member>
324     <member name="M:System.Text.RegularExpressions.GroupCollection.TryGetValue(System.String,System.Text.RegularExpressions.Group@)">
325       <summary>Attempts to retrieve a group identified by the provided name key, if it exists in the group collection.</summary>
326       <param name="key">A string with the group name key to look for.</param>
327       <param name="value">When the method returns, the group whose name is <paramref name="key" />, if it is found; otherwise, <see langword="null" /> if not found.</param>
328       <returns>
329         <see langword="true" /> if a group identified by the provided name key exists; <see langword="false" /> otherwise.</returns>
330     </member>
331     <member name="P:System.Text.RegularExpressions.GroupCollection.Count">
332       <summary>Returns the number of groups in the collection.</summary>
333       <returns>The number of groups in the collection.</returns>
334     </member>
335     <member name="P:System.Text.RegularExpressions.GroupCollection.IsReadOnly">
336       <summary>Gets a value that indicates whether the collection is read-only.</summary>
337       <returns>
338         <see langword="true" /> in all cases.</returns>
339     </member>
340     <member name="P:System.Text.RegularExpressions.GroupCollection.IsSynchronized">
341       <summary>Gets a value that indicates whether access to the <see cref="T:System.Text.RegularExpressions.GroupCollection" /> is synchronized (thread-safe).</summary>
342       <returns>
343         <see langword="false" /> in all cases.</returns>
344     </member>
345     <member name="P:System.Text.RegularExpressions.GroupCollection.Item(System.Int32)">
346       <summary>Enables access to a member of the collection by integer index.</summary>
347       <param name="groupnum">The zero-based index of the collection member to be retrieved.</param>
348       <returns>The member of the collection specified by <paramref name="groupnum" />.</returns>
349     </member>
350     <member name="P:System.Text.RegularExpressions.GroupCollection.Item(System.String)">
351       <summary>Enables access to a member of the collection by string index.</summary>
352       <param name="groupname">The name of a capturing group.</param>
353       <returns>The member of the collection specified by <paramref name="groupname" />.</returns>
354     </member>
355     <member name="P:System.Text.RegularExpressions.GroupCollection.Keys">
356       <summary>Gets a string enumeration that contains the name keys of the group collection.</summary>
357       <returns>The name keys of the group collection.</returns>
358     </member>
359     <member name="P:System.Text.RegularExpressions.GroupCollection.SyncRoot">
360       <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Text.RegularExpressions.GroupCollection" />.</summary>
361       <returns>A copy of the <see cref="T:System.Text.RegularExpressions.Match" /> object to synchronize.</returns>
362     </member>
363     <member name="P:System.Text.RegularExpressions.GroupCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Group}#Item(System.Int32)">
364       <summary>Gets the group at the specified position in the collection.</summary>
365       <param name="index">The zero-based index of the group in the group collection.</param>
366       <exception cref="T:System.NotSupportedException">Cannot set an item. This is a read-only collection.</exception>
367       <returns>The group in the desired position.</returns>
368     </member>
369     <member name="P:System.Text.RegularExpressions.GroupCollection.System#Collections#IList#IsFixedSize">
370       <summary>Gets a value indicating whether the group collection has a fixed size.</summary>
371       <returns>
372         <see langword="true" /> always.</returns>
373     </member>
374     <member name="P:System.Text.RegularExpressions.GroupCollection.System#Collections#IList#Item(System.Int32)">
375       <summary>Gets the group in the desired position.</summary>
376       <param name="index">The zero-index position of the group in the group collection.</param>
377       <exception cref="T:System.NotSupportedException">Cannot set an item. This is a read-only collection.</exception>
378       <returns>The group in the desired position.</returns>
379     </member>
380     <member name="P:System.Text.RegularExpressions.GroupCollection.Values">
381       <summary>Gets a group enumeration with all the groups in the group collection.</summary>
382       <returns>A group enumeration.</returns>
383     </member>
384     <member name="T:System.Text.RegularExpressions.Match">
385       <summary>Represents the results from a single regular expression match.</summary>
386     </member>
387     <member name="M:System.Text.RegularExpressions.Match.NextMatch">
388       <summary>Returns a new <see cref="T:System.Text.RegularExpressions.Match" /> object with the results for the next match, starting at the position at which the last match ended (at the character after the last matched character).</summary>
389       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred.</exception>
390       <returns>The next regular expression match.</returns>
391     </member>
392     <member name="M:System.Text.RegularExpressions.Match.Result(System.String)">
393       <summary>Returns the expansion of the specified replacement pattern.</summary>
394       <param name="replacement">The replacement pattern to use.</param>
395       <exception cref="T:System.ArgumentNullException">
396         <paramref name="replacement" /> is <see langword="null" />.</exception>
397       <exception cref="T:System.NotSupportedException">Expansion is not allowed for this pattern.</exception>
398       <returns>The expanded version of the <paramref name="replacement" /> parameter.</returns>
399     </member>
400     <member name="M:System.Text.RegularExpressions.Match.Synchronized(System.Text.RegularExpressions.Match)">
401       <summary>Returns a <see cref="T:System.Text.RegularExpressions.Match" /> instance equivalent to the one supplied that is suitable to share between multiple threads.</summary>
402       <param name="inner">A regular expression match equivalent to the one expected.</param>
403       <exception cref="T:System.ArgumentNullException">
404         <paramref name="inner" /> is <see langword="null" />.</exception>
405       <returns>A regular expression match that is suitable to share between multiple threads.</returns>
406     </member>
407     <member name="P:System.Text.RegularExpressions.Match.Empty">
408       <summary>Gets the empty group. All failed matches return this empty match.</summary>
409       <returns>An empty match.</returns>
410     </member>
411     <member name="P:System.Text.RegularExpressions.Match.Groups">
412       <summary>Gets a collection of groups matched by the regular expression.</summary>
413       <returns>The character groups matched by the pattern.</returns>
414     </member>
415     <member name="T:System.Text.RegularExpressions.MatchCollection">
416       <summary>Represents the set of successful matches found by iteratively applying a regular expression pattern to the input string.  The collection is immutable (read-only) and has no public constructor. The <see cref="T:System.Text.RegularExpressions.Regex.Matches(System.String)" /> method returns a <see cref="T:System.Text.RegularExpressions.MatchCollection" /> object.</summary>
417     </member>
418     <member name="M:System.Text.RegularExpressions.MatchCollection.CopyTo(System.Array,System.Int32)">
419       <summary>Copies all the elements of the collection to the given array starting at the given index.</summary>
420       <param name="array">The array the collection is to be copied into.</param>
421       <param name="arrayIndex">The position in the array where copying is to begin.</param>
422       <exception cref="T:System.ArgumentException">
423         <paramref name="array" /> is a multi-dimensional array.</exception>
424       <exception cref="T:System.IndexOutOfRangeException">
425         <paramref name="arrayIndex" /> is outside the bounds of <paramref name="array" />.  
426   
427  -or-  
428   
429  <paramref name="arrayIndex" /> plus <see cref="P:System.Text.RegularExpressions.MatchCollection.Count" /> is outside the bounds of <paramref name="array" />.</exception>
430       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred.</exception>
431     </member>
432     <member name="M:System.Text.RegularExpressions.MatchCollection.CopyTo(System.Text.RegularExpressions.Match[],System.Int32)">
433       <summary>Copies the elements of the collection to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
434       <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the collection. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
435       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
436     </member>
437     <member name="M:System.Text.RegularExpressions.MatchCollection.GetEnumerator">
438       <summary>Provides an enumerator that iterates through the collection.</summary>
439       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred.</exception>
440       <returns>An object that contains all <see cref="T:System.Text.RegularExpressions.Match" /> objects within the <see cref="T:System.Text.RegularExpressions.MatchCollection" />.</returns>
441     </member>
442     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Match}#Add(System.Text.RegularExpressions.Match)">
443       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
444       <param name="item">The object to add to the collection.</param>
445       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
446     </member>
447     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Match}#Clear">
448       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
449       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
450     </member>
451     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Match}#Contains(System.Text.RegularExpressions.Match)">
452       <summary>Determines whether the collection contains a specific value.</summary>
453       <param name="item">The object to locate in the collection.</param>
454       <returns>
455         <see langword="true" /> if <paramref name="item" /> is found in the collection; otherwise, <see langword="false" />.</returns>
456     </member>
457     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#Generic#ICollection{System#Text#RegularExpressions#Match}#Remove(System.Text.RegularExpressions.Match)">
458       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
459       <param name="item">The object to remove from the collection.</param>
460       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
461       <returns>
462         <see langword="true" /> if <paramref name="item" /> was successfully removed from the collection; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original collection.</returns>
463     </member>
464     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#Generic#IEnumerable{System#Text#RegularExpressions#Match}#GetEnumerator">
465       <summary>Returns an enumerator that iterates through the collection.</summary>
466       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
467       <returns>An enumerator that can be used to iterate through the collection.</returns>
468     </member>
469     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Match}#IndexOf(System.Text.RegularExpressions.Match)">
470       <summary>Determines the index of a specific item in the collection.</summary>
471       <param name="item">The object to locate in the collection.</param>
472       <returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
473     </member>
474     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Match}#Insert(System.Int32,System.Text.RegularExpressions.Match)">
475       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
476       <param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
477       <param name="item">The object to insert into the collection.</param>
478       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
479     </member>
480     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Match}#RemoveAt(System.Int32)">
481       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
482       <param name="index">The zero-based index of the item to remove.</param>
483       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
484     </member>
485     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#IList#Add(System.Object)">
486       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
487       <param name="value">The object to add to the collection.</param>
488       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
489       <returns>Calling this method always throws <see cref="T:System.NotSupportedException" />.</returns>
490     </member>
491     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#IList#Clear">
492       <summary>Removes all items from the collection.</summary>
493       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
494     </member>
495     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#IList#Contains(System.Object)">
496       <summary>Determines whether the collection contains a specific value.</summary>
497       <param name="value">The object to locate in the collection.</param>
498       <returns>
499         <see langword="true" /> if the <see cref="T:System.Object" /> is found in the collection; otherwise, <see langword="false" />.</returns>
500     </member>
501     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#IList#IndexOf(System.Object)">
502       <summary>Determines the index of a specific item in the collection.</summary>
503       <param name="value">The object to locate in the collection.</param>
504       <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
505     </member>
506     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
507       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
508       <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
509       <param name="value">The object to insert into the collection.</param>
510       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
511     </member>
512     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#IList#Remove(System.Object)">
513       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
514       <param name="value">The object to remove from the collection.</param>
515       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
516     </member>
517     <member name="M:System.Text.RegularExpressions.MatchCollection.System#Collections#IList#RemoveAt(System.Int32)">
518       <summary>Calling this method always throws <see cref="T:System.NotSupportedException" />.</summary>
519       <param name="index">The zero-based index of the item to remove.</param>
520       <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
521     </member>
522     <member name="P:System.Text.RegularExpressions.MatchCollection.Count">
523       <summary>Gets the number of matches.</summary>
524       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred.</exception>
525       <returns>The number of matches.</returns>
526     </member>
527     <member name="P:System.Text.RegularExpressions.MatchCollection.IsReadOnly">
528       <summary>Gets a value that indicates whether the collection is read only.</summary>
529       <returns>
530         <see langword="true" /> in all cases.</returns>
531     </member>
532     <member name="P:System.Text.RegularExpressions.MatchCollection.IsSynchronized">
533       <summary>Gets a value indicating whether access to the collection is synchronized (thread-safe).</summary>
534       <returns>
535         <see langword="false" /> in all cases.</returns>
536     </member>
537     <member name="P:System.Text.RegularExpressions.MatchCollection.Item(System.Int32)">
538       <summary>Gets an individual member of the collection.</summary>
539       <param name="i">Index into the <see cref="T:System.Text.RegularExpressions.Match" /> collection.</param>
540       <exception cref="T:System.ArgumentOutOfRangeException">
541         <paramref name="i" /> is less than 0 or greater than or equal to <see cref="P:System.Text.RegularExpressions.MatchCollection.Count" />.</exception>
542       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred.</exception>
543       <returns>The captured substring at position <paramref name="i" /> in the collection.</returns>
544     </member>
545     <member name="P:System.Text.RegularExpressions.MatchCollection.SyncRoot">
546       <summary>Gets an object that can be used to synchronize access to the collection.</summary>
547       <returns>An object that can be used to synchronize access to the collection. This property always returns the object itself.</returns>
548     </member>
549     <member name="P:System.Text.RegularExpressions.MatchCollection.System#Collections#Generic#IList{System#Text#RegularExpressions#Match}#Item(System.Int32)">
550       <summary>Gets the element at the specified index.</summary>
551       <param name="index">The zero-based index of the element to get.</param>
552       <returns>The element at the specified index.</returns>
553     </member>
554     <member name="P:System.Text.RegularExpressions.MatchCollection.System#Collections#IList#IsFixedSize">
555       <summary>Gets a value indicating whether the collection has a fixed size.</summary>
556       <returns>
557         <see langword="true" />.</returns>
558     </member>
559     <member name="P:System.Text.RegularExpressions.MatchCollection.System#Collections#IList#Item(System.Int32)">
560       <summary>Gets the element at the specified index.</summary>
561       <param name="index">The zero-based index of the element to get.</param>
562       <returns>The element at the specified index.</returns>
563     </member>
564     <member name="T:System.Text.RegularExpressions.MatchEvaluator">
565       <summary>Represents the method that is called each time a regular expression match is found during a <see cref="Overload:System.Text.RegularExpressions.Regex.Replace" /> method operation.</summary>
566       <param name="match">The <see cref="T:System.Text.RegularExpressions.Match" /> object that represents a single regular expression match during a <see cref="Overload:System.Text.RegularExpressions.Regex.Replace" /> method operation.</param>
567       <returns>A string returned by the method that is represented by the <see cref="T:System.Text.RegularExpressions.MatchEvaluator" /> delegate.</returns>
568     </member>
569     <member name="T:System.Text.RegularExpressions.Regex">
570       <summary>Represents an immutable regular expression.</summary>
571     </member>
572     <member name="F:System.Text.RegularExpressions.Regex.capnames">
573       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
574     </member>
575     <member name="F:System.Text.RegularExpressions.Regex.caps">
576       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
577     </member>
578     <member name="F:System.Text.RegularExpressions.Regex.capsize">
579       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
580     </member>
581     <member name="F:System.Text.RegularExpressions.Regex.capslist">
582       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
583     </member>
584     <member name="F:System.Text.RegularExpressions.Regex.factory">
585       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
586     </member>
587     <member name="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout">
588       <summary>Specifies that a pattern-matching operation should not time out.</summary>
589     </member>
590     <member name="F:System.Text.RegularExpressions.Regex.internalMatchTimeout">
591       <summary>The maximum amount of time that can elapse in a pattern-matching operation before the operation times out.</summary>
592     </member>
593     <member name="F:System.Text.RegularExpressions.Regex.pattern">
594       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
595     </member>
596     <member name="F:System.Text.RegularExpressions.Regex.roptions">
597       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
598     </member>
599     <member name="M:System.Text.RegularExpressions.Regex.#ctor">
600       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.Regex" /> class.</summary>
601     </member>
602     <member name="M:System.Text.RegularExpressions.Regex.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
603       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.Regex" /> class by using serialized data.</summary>
604       <param name="info">The object that contains a serialized pattern and <see cref="T:System.Text.RegularExpressions.RegexOptions" /> information.</param>
605       <param name="context">The destination for this serialization. (This parameter is not used; specify <see langword="null" />.)</param>
606       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
607       <exception cref="T:System.ArgumentNullException">The pattern that <paramref name="info" /> contains is <see langword="null" />.</exception>
608       <exception cref="T:System.ArgumentOutOfRangeException">
609         <paramref name="info" /> contains an invalid <see cref="T:System.Text.RegularExpressions.RegexOptions" /> flag.</exception>
610     </member>
611     <member name="M:System.Text.RegularExpressions.Regex.#ctor(System.String)">
612       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.Regex" /> class for the specified regular expression.</summary>
613       <param name="pattern">The regular expression pattern to match.</param>
614       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
615       <exception cref="T:System.ArgumentNullException">
616         <paramref name="pattern" /> is <see langword="null" />.</exception>
617     </member>
618     <member name="M:System.Text.RegularExpressions.Regex.#ctor(System.String,System.Text.RegularExpressions.RegexOptions)">
619       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.Regex" /> class for the specified regular expression, with options that modify the pattern.</summary>
620       <param name="pattern">The regular expression pattern to match.</param>
621       <param name="options">A bitwise combination of the enumeration values that modify the regular expression.</param>
622       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
623       <exception cref="T:System.ArgumentNullException">
624         <paramref name="pattern" /> is <see langword="null" />.</exception>
625       <exception cref="T:System.ArgumentOutOfRangeException">
626         <paramref name="options" /> contains an invalid flag.</exception>
627     </member>
628     <member name="M:System.Text.RegularExpressions.Regex.#ctor(System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)">
629       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.Regex" /> class for the specified regular expression, with options that modify the pattern and a value that specifies how long a pattern matching method should attempt a match before it times out.</summary>
630       <param name="pattern">The regular expression pattern to match.</param>
631       <param name="options">A bitwise combination of the enumeration values that modify the regular expression.</param>
632       <param name="matchTimeout">A time-out interval, or <see cref="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout" /> to indicate that the method should not time out.</param>
633       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
634       <exception cref="T:System.ArgumentNullException">
635         <paramref name="pattern" /> is <see langword="null" />.</exception>
636       <exception cref="T:System.ArgumentOutOfRangeException">
637         <paramref name="options" /> is not a valid <see cref="T:System.Text.RegularExpressions.RegexOptions" /> value.  
638   
639  -or-  
640   
641  <paramref name="matchTimeout" /> is negative, zero, or greater than approximately 24 days.</exception>
642     </member>
643     <member name="M:System.Text.RegularExpressions.Regex.CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName)">
644       <summary>Compiles one or more specified <see cref="T:System.Text.RegularExpressions.Regex" /> objects to a named assembly.</summary>
645       <param name="regexinfos">An array that describes the regular expressions to compile.</param>
646       <param name="assemblyname">The file name of the assembly.</param>
647       <exception cref="T:System.ArgumentException">The value of the <paramref name="assemblyname" /> parameter's <see cref="P:System.Reflection.AssemblyName.Name" /> property is an empty or null string.  
648   
649  -or-  
650   
651  The regular expression pattern of one or more objects in <paramref name="regexinfos" /> contains invalid syntax.</exception>
652       <exception cref="T:System.ArgumentNullException">
653         <paramref name="assemblyname" /> or <paramref name="regexinfos" /> is <see langword="null" />.</exception>
654       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: Creating an assembly of compiled regular expressions is not supported.</exception>
655     </member>
656     <member name="M:System.Text.RegularExpressions.Regex.CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName,System.Reflection.Emit.CustomAttributeBuilder[])">
657       <summary>Compiles one or more specified <see cref="T:System.Text.RegularExpressions.Regex" /> objects to a named assembly with the specified attributes.</summary>
658       <param name="regexinfos">An array that describes the regular expressions to compile.</param>
659       <param name="assemblyname">The file name of the assembly.</param>
660       <param name="attributes">An array that defines the attributes to apply to the assembly.</param>
661       <exception cref="T:System.ArgumentException">The value of the <paramref name="assemblyname" /> parameter's <see cref="P:System.Reflection.AssemblyName.Name" /> property is an empty or null string.  
662   
663  -or-  
664   
665  The regular expression pattern of one or more objects in <paramref name="regexinfos" /> contains invalid syntax.</exception>
666       <exception cref="T:System.ArgumentNullException">
667         <paramref name="assemblyname" /> or <paramref name="regexinfos" /> is <see langword="null" />.</exception>
668       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: Creating an assembly of compiled regular expressions is not supported.</exception>
669     </member>
670     <member name="M:System.Text.RegularExpressions.Regex.CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName,System.Reflection.Emit.CustomAttributeBuilder[],System.String)">
671       <summary>Compiles one or more specified <see cref="T:System.Text.RegularExpressions.Regex" /> objects and a specified resource file to a named assembly with the specified attributes.</summary>
672       <param name="regexinfos">An array that describes the regular expressions to compile.</param>
673       <param name="assemblyname">The file name of the assembly.</param>
674       <param name="attributes">An array that defines the attributes to apply to the assembly.</param>
675       <param name="resourceFile">The name of the Win32 resource file to include in the assembly.</param>
676       <exception cref="T:System.ArgumentException">The value of the <paramref name="assemblyname" /> parameter's <see cref="P:System.Reflection.AssemblyName.Name" /> property is an empty or null string.  
677   
678  -or-  
679   
680  The regular expression pattern of one or more objects in <paramref name="regexinfos" /> contains invalid syntax.</exception>
681       <exception cref="T:System.ArgumentNullException">
682         <paramref name="assemblyname" /> or <paramref name="regexinfos" /> is <see langword="null" />.</exception>
683       <exception cref="T:System.Runtime.InteropServices.COMException">The <paramref name="resourceFile" /> parameter designates an invalid Win32 resource file.</exception>
684       <exception cref="T:System.IO.FileNotFoundException">The file designated by the <paramref name="resourceFile" /> parameter cannot be found.</exception>
685       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: Creating an assembly of compiled regular expressions is not supported.</exception>
686     </member>
687     <member name="M:System.Text.RegularExpressions.Regex.Escape(System.String)">
688       <summary>Escapes a minimal set of characters (\, *, +, ?, |, {, [, (,), ^, $, ., #, and white space) by replacing them with their escape codes. This instructs the regular expression engine to interpret these characters literally rather than as metacharacters.</summary>
689       <param name="str">The input string that contains the text to convert.</param>
690       <exception cref="T:System.ArgumentNullException">
691         <paramref name="str" /> is <see langword="null" />.</exception>
692       <returns>A string of characters with metacharacters converted to their escaped form.</returns>
693     </member>
694     <member name="M:System.Text.RegularExpressions.Regex.GetGroupNames">
695       <summary>Returns an array of capturing group names for the regular expression.</summary>
696       <returns>A string array of group names.</returns>
697     </member>
698     <member name="M:System.Text.RegularExpressions.Regex.GetGroupNumbers">
699       <summary>Returns an array of capturing group numbers that correspond to group names in an array.</summary>
700       <returns>An integer array of group numbers.</returns>
701     </member>
702     <member name="M:System.Text.RegularExpressions.Regex.GroupNameFromNumber(System.Int32)">
703       <summary>Gets the group name that corresponds to the specified group number.</summary>
704       <param name="i">The group number to convert to the corresponding group name.</param>
705       <returns>A string that contains the group name associated with the specified group number. If there is no group name that corresponds to <paramref name="i" />, the method returns <see cref="F:System.String.Empty" />.</returns>
706     </member>
707     <member name="M:System.Text.RegularExpressions.Regex.GroupNumberFromName(System.String)">
708       <summary>Returns the group number that corresponds to the specified group name.</summary>
709       <param name="name">The group name to convert to the corresponding group number.</param>
710       <exception cref="T:System.ArgumentNullException">
711         <paramref name="name" /> is <see langword="null" />.</exception>
712       <returns>The group number that corresponds to the specified group name, or -1 if <paramref name="name" /> is not a valid group name.</returns>
713     </member>
714     <member name="M:System.Text.RegularExpressions.Regex.InitializeReferences">
715       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
716       <exception cref="T:System.NotSupportedException">References have already been initialized.</exception>
717     </member>
718     <member name="M:System.Text.RegularExpressions.Regex.IsMatch(System.String)">
719       <summary>Indicates whether the regular expression specified in the <see cref="T:System.Text.RegularExpressions.Regex" /> constructor finds a match in a specified input string.</summary>
720       <param name="input">The string to search for a match.</param>
721       <exception cref="T:System.ArgumentNullException">
722         <paramref name="input" /> is <see langword="null" />.</exception>
723       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
724       <returns>
725         <see langword="true" /> if the regular expression finds a match; otherwise, <see langword="false" />.</returns>
726     </member>
727     <member name="M:System.Text.RegularExpressions.Regex.IsMatch(System.String,System.Int32)">
728       <summary>Indicates whether the regular expression specified in the <see cref="T:System.Text.RegularExpressions.Regex" /> constructor finds a match in the specified input string, beginning at the specified starting position in the string.</summary>
729       <param name="input">The string to search for a match.</param>
730       <param name="startat">The character position at which to start the search.</param>
731       <exception cref="T:System.ArgumentNullException">
732         <paramref name="input" /> is <see langword="null" />.</exception>
733       <exception cref="T:System.ArgumentOutOfRangeException">
734         <paramref name="startat" /> is less than zero or greater than the length of <paramref name="input" />.</exception>
735       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
736       <returns>
737         <see langword="true" /> if the regular expression finds a match; otherwise, <see langword="false" />.</returns>
738     </member>
739     <member name="M:System.Text.RegularExpressions.Regex.IsMatch(System.String,System.String)">
740       <summary>Indicates whether the specified regular expression finds a match in the specified input string.</summary>
741       <param name="input">The string to search for a match.</param>
742       <param name="pattern">The regular expression pattern to match.</param>
743       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
744       <exception cref="T:System.ArgumentNullException">
745         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
746       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
747       <returns>
748         <see langword="true" /> if the regular expression finds a match; otherwise, <see langword="false" />.</returns>
749     </member>
750     <member name="M:System.Text.RegularExpressions.Regex.IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
751       <summary>Indicates whether the specified regular expression finds a match in the specified input string, using the specified matching options.</summary>
752       <param name="input">The string to search for a match.</param>
753       <param name="pattern">The regular expression pattern to match.</param>
754       <param name="options">A bitwise combination of the enumeration values that provide options for matching.</param>
755       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
756       <exception cref="T:System.ArgumentNullException">
757         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
758       <exception cref="T:System.ArgumentOutOfRangeException">
759         <paramref name="options" /> is not a valid <see cref="T:System.Text.RegularExpressions.RegexOptions" /> value.</exception>
760       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
761       <returns>
762         <see langword="true" /> if the regular expression finds a match; otherwise, <see langword="false" />.</returns>
763     </member>
764     <member name="M:System.Text.RegularExpressions.Regex.IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)">
765       <summary>Indicates whether the specified regular expression finds a match in the specified input string, using the specified matching options and time-out interval.</summary>
766       <param name="input">The string to search for a match.</param>
767       <param name="pattern">The regular expression pattern to match.</param>
768       <param name="options">A bitwise combination of the enumeration values that provide options for matching.</param>
769       <param name="matchTimeout">A time-out interval, or <see cref="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout" /> to indicate that the method should not time out.</param>
770       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
771       <exception cref="T:System.ArgumentNullException">
772         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
773       <exception cref="T:System.ArgumentOutOfRangeException">
774         <paramref name="options" /> is not a valid <see cref="T:System.Text.RegularExpressions.RegexOptions" /> value.  
775   
776  -or-  
777   
778  <paramref name="matchTimeout" /> is negative, zero, or greater than approximately 24 days.</exception>
779       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred.</exception>
780       <returns>
781         <see langword="true" /> if the regular expression finds a match; otherwise, <see langword="false" />.</returns>
782     </member>
783     <member name="M:System.Text.RegularExpressions.Regex.Match(System.String)">
784       <summary>Searches the specified input string for the first occurrence of the regular expression specified in the <see cref="T:System.Text.RegularExpressions.Regex" /> constructor.</summary>
785       <param name="input">The string to search for a match.</param>
786       <exception cref="T:System.ArgumentNullException">
787         <paramref name="input" /> is <see langword="null" />.</exception>
788       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
789       <returns>An object that contains information about the match.</returns>
790     </member>
791     <member name="M:System.Text.RegularExpressions.Regex.Match(System.String,System.Int32)">
792       <summary>Searches the input string for the first occurrence of a regular expression, beginning at the specified starting position in the string.</summary>
793       <param name="input">The string to search for a match.</param>
794       <param name="startat">The zero-based character position at which to start the search.</param>
795       <exception cref="T:System.ArgumentNullException">
796         <paramref name="input" /> is <see langword="null" />.</exception>
797       <exception cref="T:System.ArgumentOutOfRangeException">
798         <paramref name="startat" /> is less than zero or greater than the length of <paramref name="input" />.</exception>
799       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
800       <returns>An object that contains information about the match.</returns>
801     </member>
802     <member name="M:System.Text.RegularExpressions.Regex.Match(System.String,System.Int32,System.Int32)">
803       <summary>Searches the input string for the first occurrence of a regular expression, beginning at the specified starting position and searching only the specified number of characters.</summary>
804       <param name="input">The string to search for a match.</param>
805       <param name="beginning">The zero-based character position in the input string that defines the leftmost position to be searched.</param>
806       <param name="length">The number of characters in the substring to include in the search.</param>
807       <exception cref="T:System.ArgumentNullException">
808         <paramref name="input" /> is <see langword="null" />.</exception>
809       <exception cref="T:System.ArgumentOutOfRangeException">
810         <paramref name="beginning" /> is less than zero or greater than the length of <paramref name="input" />.  
811   
812  -or-  
813   
814  <paramref name="length" /> is less than zero or greater than the length of <paramref name="input" />.  
815   
816  -or-  
817   
818  <paramref name="beginning" /><see langword="+" /><paramref name="length" /><see langword="-1" /> identifies a position that is outside the range of <paramref name="input" />.</exception>
819       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
820       <returns>An object that contains information about the match.</returns>
821     </member>
822     <member name="M:System.Text.RegularExpressions.Regex.Match(System.String,System.String)">
823       <summary>Searches the specified input string for the first occurrence of the specified regular expression.</summary>
824       <param name="input">The string to search for a match.</param>
825       <param name="pattern">The regular expression pattern to match.</param>
826       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
827       <exception cref="T:System.ArgumentNullException">
828         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
829       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
830       <returns>An object that contains information about the match.</returns>
831     </member>
832     <member name="M:System.Text.RegularExpressions.Regex.Match(System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
833       <summary>Searches the input string for the first occurrence of the specified regular expression, using the specified matching options.</summary>
834       <param name="input">The string to search for a match.</param>
835       <param name="pattern">The regular expression pattern to match.</param>
836       <param name="options">A bitwise combination of the enumeration values that provide options for matching.</param>
837       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
838       <exception cref="T:System.ArgumentNullException">
839         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
840       <exception cref="T:System.ArgumentOutOfRangeException">
841         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.</exception>
842       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
843       <returns>An object that contains information about the match.</returns>
844     </member>
845     <member name="M:System.Text.RegularExpressions.Regex.Match(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)">
846       <summary>Searches the input string for the first occurrence of the specified regular expression, using the specified matching options and time-out interval.</summary>
847       <param name="input">The string to search for a match.</param>
848       <param name="pattern">The regular expression pattern to match.</param>
849       <param name="options">A bitwise combination of the enumeration values that provide options for matching.</param>
850       <param name="matchTimeout">A time-out interval, or <see cref="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout" /> to indicate that the method should not time out.</param>
851       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
852       <exception cref="T:System.ArgumentNullException">
853         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
854       <exception cref="T:System.ArgumentOutOfRangeException">
855         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.  
856   
857  -or-  
858   
859  <paramref name="matchTimeout" /> is negative, zero, or greater than approximately 24 days.</exception>
860       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
861       <returns>An object that contains information about the match.</returns>
862     </member>
863     <member name="M:System.Text.RegularExpressions.Regex.Matches(System.String)">
864       <summary>Searches the specified input string for all occurrences of a regular expression.</summary>
865       <param name="input">The string to search for a match.</param>
866       <exception cref="T:System.ArgumentNullException">
867         <paramref name="input" /> is <see langword="null" />.</exception>
868       <returns>A collection of the <see cref="T:System.Text.RegularExpressions.Match" /> objects found by the search. If no matches are found, the method returns an empty collection object.</returns>
869     </member>
870     <member name="M:System.Text.RegularExpressions.Regex.Matches(System.String,System.Int32)">
871       <summary>Searches the specified input string for all occurrences of a regular expression, beginning at the specified starting position in the string.</summary>
872       <param name="input">The string to search for a match.</param>
873       <param name="startat">The character position in the input string at which to start the search.</param>
874       <exception cref="T:System.ArgumentNullException">
875         <paramref name="input" /> is <see langword="null" />.</exception>
876       <exception cref="T:System.ArgumentOutOfRangeException">
877         <paramref name="startat" /> is less than zero or greater than the length of <paramref name="input" />.</exception>
878       <returns>A collection of the <see cref="T:System.Text.RegularExpressions.Match" /> objects found by the search. If no matches are found, the method returns an empty collection object.</returns>
879     </member>
880     <member name="M:System.Text.RegularExpressions.Regex.Matches(System.String,System.String)">
881       <summary>Searches the specified input string for all occurrences of a specified regular expression.</summary>
882       <param name="input">The string to search for a match.</param>
883       <param name="pattern">The regular expression pattern to match.</param>
884       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
885       <exception cref="T:System.ArgumentNullException">
886         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
887       <returns>A collection of the <see cref="T:System.Text.RegularExpressions.Match" /> objects found by the search. If no matches are found, the method returns an empty collection object.</returns>
888     </member>
889     <member name="M:System.Text.RegularExpressions.Regex.Matches(System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
890       <summary>Searches the specified input string for all occurrences of a specified regular expression, using the specified matching options.</summary>
891       <param name="input">The string to search for a match.</param>
892       <param name="pattern">The regular expression pattern to match.</param>
893       <param name="options">A bitwise combination of the enumeration values that specify options for matching.</param>
894       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
895       <exception cref="T:System.ArgumentNullException">
896         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
897       <exception cref="T:System.ArgumentOutOfRangeException">
898         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.</exception>
899       <returns>A collection of the <see cref="T:System.Text.RegularExpressions.Match" /> objects found by the search. If no matches are found, the method returns an empty collection object.</returns>
900     </member>
901     <member name="M:System.Text.RegularExpressions.Regex.Matches(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)">
902       <summary>Searches the specified input string for all occurrences of a specified regular expression, using the specified matching options and time-out interval.</summary>
903       <param name="input">The string to search for a match.</param>
904       <param name="pattern">The regular expression pattern to match.</param>
905       <param name="options">A bitwise combination of the enumeration values that specify options for matching.</param>
906       <param name="matchTimeout">A time-out interval, or <see cref="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout" /> to indicate that the method should not time out.</param>
907       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
908       <exception cref="T:System.ArgumentNullException">
909         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
910       <exception cref="T:System.ArgumentOutOfRangeException">
911         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.  
912   
913  -or-  
914   
915  <paramref name="matchTimeout" /> is negative, zero, or greater than approximately 24 days.</exception>
916       <returns>A collection of the <see cref="T:System.Text.RegularExpressions.Match" /> objects found by the search. If no matches are found, the method returns an empty collection object.</returns>
917     </member>
918     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.String)">
919       <summary>In a specified input string, replaces all strings that match a regular expression pattern with a specified replacement string.</summary>
920       <param name="input">The string to search for a match.</param>
921       <param name="replacement">The replacement string.</param>
922       <exception cref="T:System.ArgumentNullException">
923         <paramref name="input" /> or <paramref name="replacement" /> is <see langword="null" />.</exception>
924       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
925       <returns>A new string that is identical to the input string, except that the replacement string takes the place of each matched string. If the regular expression pattern is not matched in the current instance, the method returns the current instance unchanged.</returns>
926     </member>
927     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.String,System.Int32)">
928       <summary>In a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string.</summary>
929       <param name="input">The string to search for a match.</param>
930       <param name="replacement">The replacement string.</param>
931       <param name="count">The maximum number of times the replacement can occur.</param>
932       <exception cref="T:System.ArgumentNullException">
933         <paramref name="input" /> or <paramref name="replacement" /> is <see langword="null" />.</exception>
934       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
935       <returns>A new string that is identical to the input string, except that the replacement string takes the place of each matched string. If the regular expression pattern is not matched in the current instance, the method returns the current instance unchanged.</returns>
936     </member>
937     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.String,System.Int32,System.Int32)">
938       <summary>In a specified input substring, replaces a specified maximum number of strings that match a regular expression pattern with a specified replacement string.</summary>
939       <param name="input">The string to search for a match.</param>
940       <param name="replacement">The replacement string.</param>
941       <param name="count">Maximum number of times the replacement can occur.</param>
942       <param name="startat">The character position in the input string where the search begins.</param>
943       <exception cref="T:System.ArgumentNullException">
944         <paramref name="input" /> or <paramref name="replacement" /> is <see langword="null" />.</exception>
945       <exception cref="T:System.ArgumentOutOfRangeException">
946         <paramref name="startat" /> is less than zero or greater than the length of <paramref name="input" />.</exception>
947       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
948       <returns>A new string that is identical to the input string, except that the replacement string takes the place of each matched string. If the regular expression pattern is not matched in the current instance, the method returns the current instance unchanged.</returns>
949     </member>
950     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.String,System.String)">
951       <summary>In a specified input string, replaces all strings that match a specified regular expression with a specified replacement string.</summary>
952       <param name="input">The string to search for a match.</param>
953       <param name="pattern">The regular expression pattern to match.</param>
954       <param name="replacement">The replacement string.</param>
955       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
956       <exception cref="T:System.ArgumentNullException">
957         <paramref name="input" />, <paramref name="pattern" />, or <paramref name="replacement" /> is <see langword="null" />.</exception>
958       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
959       <returns>A new string that is identical to the input string, except that the replacement string takes the place of each matched string. If <paramref name="pattern" /> is not matched in the current instance, the method returns the current instance unchanged.</returns>
960     </member>
961     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
962       <summary>In a specified input string, replaces all strings that match a specified regular expression with a specified replacement string. Specified options modify the matching operation.</summary>
963       <param name="input">The string to search for a match.</param>
964       <param name="pattern">The regular expression pattern to match.</param>
965       <param name="replacement">The replacement string.</param>
966       <param name="options">A bitwise combination of the enumeration values that provide options for matching.</param>
967       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
968       <exception cref="T:System.ArgumentNullException">
969         <paramref name="input" />, <paramref name="pattern" />, or <paramref name="replacement" /> is <see langword="null" />.</exception>
970       <exception cref="T:System.ArgumentOutOfRangeException">
971         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.</exception>
972       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
973       <returns>A new string that is identical to the input string, except that the replacement string takes the place of each matched string. If <paramref name="pattern" /> is not matched in the current instance, the method returns the current instance unchanged.</returns>
974     </member>
975     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)">
976       <summary>In a specified input string, replaces all strings that match a specified regular expression with a specified replacement string. Additional parameters specify options that modify the matching operation and a time-out interval if no match is found.</summary>
977       <param name="input">The string to search for a match.</param>
978       <param name="pattern">The regular expression pattern to match.</param>
979       <param name="replacement">The replacement string.</param>
980       <param name="options">A bitwise combination of the enumeration values that provide options for matching.</param>
981       <param name="matchTimeout">A time-out interval, or <see cref="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout" /> to indicate that the method should not time out.</param>
982       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
983       <exception cref="T:System.ArgumentNullException">
984         <paramref name="input" />, <paramref name="pattern" />, or <paramref name="replacement" /> is <see langword="null" />.</exception>
985       <exception cref="T:System.ArgumentOutOfRangeException">
986         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.  
987   
988  -or-  
989   
990  <paramref name="matchTimeout" /> is negative, zero, or greater than approximately 24 days.</exception>
991       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
992       <returns>A new string that is identical to the input string, except that the replacement string takes the place of each matched string. If <paramref name="pattern" /> is not matched in the current instance, the method returns the current instance unchanged.</returns>
993     </member>
994     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.String,System.Text.RegularExpressions.MatchEvaluator)">
995       <summary>In a specified input string, replaces all strings that match a specified regular expression with a string returned by a <see cref="T:System.Text.RegularExpressions.MatchEvaluator" /> delegate.</summary>
996       <param name="input">The string to search for a match.</param>
997       <param name="pattern">The regular expression pattern to match.</param>
998       <param name="evaluator">A custom method that examines each match and returns either the original matched string or a replacement string.</param>
999       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
1000       <exception cref="T:System.ArgumentNullException">
1001         <paramref name="input" />, <paramref name="pattern" />, or <paramref name="evaluator" /> is <see langword="null" />.</exception>
1002       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1003       <returns>A new string that is identical to the input string, except that a replacement string takes the place of each matched string. If <paramref name="pattern" /> is not matched in the current instance, the method returns the current instance unchanged.</returns>
1004     </member>
1005     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.String,System.Text.RegularExpressions.MatchEvaluator,System.Text.RegularExpressions.RegexOptions)">
1006       <summary>In a specified input string, replaces all strings that match a specified regular expression with a string returned by a <see cref="T:System.Text.RegularExpressions.MatchEvaluator" /> delegate. Specified options modify the matching operation.</summary>
1007       <param name="input">The string to search for a match.</param>
1008       <param name="pattern">The regular expression pattern to match.</param>
1009       <param name="evaluator">A custom method that examines each match and returns either the original matched string or a replacement string.</param>
1010       <param name="options">A bitwise combination of the enumeration values that provide options for matching.</param>
1011       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
1012       <exception cref="T:System.ArgumentNullException">
1013         <paramref name="input" />, <paramref name="pattern" />, or <paramref name="evaluator" /> is <see langword="null" />.</exception>
1014       <exception cref="T:System.ArgumentOutOfRangeException">
1015         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.</exception>
1016       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1017       <returns>A new string that is identical to the input string, except that a replacement string takes the place of each matched string. If <paramref name="pattern" /> is not matched in the current instance, the method returns the current instance unchanged.</returns>
1018     </member>
1019     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.String,System.Text.RegularExpressions.MatchEvaluator,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)">
1020       <summary>In a specified input string, replaces all substrings that match a specified regular expression with a string returned by a <see cref="T:System.Text.RegularExpressions.MatchEvaluator" /> delegate. Additional parameters specify options that modify the matching operation and a time-out interval if no match is found.</summary>
1021       <param name="input">The string to search for a match.</param>
1022       <param name="pattern">The regular expression pattern to match.</param>
1023       <param name="evaluator">A custom method that examines each match and returns either the original matched string or a replacement string.</param>
1024       <param name="options">A bitwise combination of enumeration values that provide options for matching.</param>
1025       <param name="matchTimeout">A time-out interval, or <see cref="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout" /> to indicate that the method should not time out.</param>
1026       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
1027       <exception cref="T:System.ArgumentNullException">
1028         <paramref name="input" />, <paramref name="pattern" />, or <paramref name="evaluator" /> is <see langword="null" />.</exception>
1029       <exception cref="T:System.ArgumentOutOfRangeException">
1030         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.  
1031   
1032  -or-  
1033   
1034  <paramref name="matchTimeout" /> is negative, zero, or greater than approximately 24 days.</exception>
1035       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1036       <returns>A new string that is identical to the input string, except that the replacement string takes the place of each matched string. If <paramref name="pattern" /> is not matched in the current instance, the method returns the current instance unchanged.</returns>
1037     </member>
1038     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.Text.RegularExpressions.MatchEvaluator)">
1039       <summary>In a specified input string, replaces all strings that match a specified regular expression with a string returned by a <see cref="T:System.Text.RegularExpressions.MatchEvaluator" /> delegate.</summary>
1040       <param name="input">The string to search for a match.</param>
1041       <param name="evaluator">A custom method that examines each match and returns either the original matched string or a replacement string.</param>
1042       <exception cref="T:System.ArgumentNullException">
1043         <paramref name="input" /> or <paramref name="evaluator" /> is <see langword="null" />.</exception>
1044       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1045       <returns>A new string that is identical to the input string, except that a replacement string takes the place of each matched string. If the regular expression pattern is not matched in the current instance, the method returns the current instance unchanged.</returns>
1046     </member>
1047     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.Text.RegularExpressions.MatchEvaluator,System.Int32)">
1048       <summary>In a specified input string, replaces a specified maximum number of strings that match a regular expression pattern with a string returned by a <see cref="T:System.Text.RegularExpressions.MatchEvaluator" /> delegate.</summary>
1049       <param name="input">The string to search for a match.</param>
1050       <param name="evaluator">A custom method that examines each match and returns either the original matched string or a replacement string.</param>
1051       <param name="count">The maximum number of times the replacement will occur.</param>
1052       <exception cref="T:System.ArgumentNullException">
1053         <paramref name="input" /> or <paramref name="evaluator" /> is <see langword="null" />.</exception>
1054       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1055       <returns>A new string that is identical to the input string, except that a replacement string takes the place of each matched string. If the regular expression pattern is not matched in the current instance, the method returns the current instance unchanged.</returns>
1056     </member>
1057     <member name="M:System.Text.RegularExpressions.Regex.Replace(System.String,System.Text.RegularExpressions.MatchEvaluator,System.Int32,System.Int32)">
1058       <summary>In a specified input substring, replaces a specified maximum number of strings that match a regular expression pattern with a string returned by a <see cref="T:System.Text.RegularExpressions.MatchEvaluator" /> delegate.</summary>
1059       <param name="input">The string to search for a match.</param>
1060       <param name="evaluator">A custom method that examines each match and returns either the original matched string or a replacement string.</param>
1061       <param name="count">The maximum number of times the replacement will occur.</param>
1062       <param name="startat">The character position in the input string where the search begins.</param>
1063       <exception cref="T:System.ArgumentNullException">
1064         <paramref name="input" /> or <paramref name="evaluator" /> is <see langword="null" />.</exception>
1065       <exception cref="T:System.ArgumentOutOfRangeException">
1066         <paramref name="startat" /> is less than zero or greater than the length of <paramref name="input" />.</exception>
1067       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1068       <returns>A new string that is identical to the input string, except that a replacement string takes the place of each matched string. If the regular expression pattern is not matched in the current instance, the method returns the current instance unchanged.</returns>
1069     </member>
1070     <member name="M:System.Text.RegularExpressions.Regex.Split(System.String)">
1071       <summary>Splits an input string into an array of substrings at the positions defined by a regular expression pattern specified in the <see cref="T:System.Text.RegularExpressions.Regex" /> constructor.</summary>
1072       <param name="input">The string to split.</param>
1073       <exception cref="T:System.ArgumentNullException">
1074         <paramref name="input" /> is <see langword="null" />.</exception>
1075       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1076       <returns>An array of strings.</returns>
1077     </member>
1078     <member name="M:System.Text.RegularExpressions.Regex.Split(System.String,System.Int32)">
1079       <summary>Splits an input string a specified maximum number of times into an array of substrings, at the positions defined by a regular expression specified in the <see cref="T:System.Text.RegularExpressions.Regex" /> constructor.</summary>
1080       <param name="input">The string to be split.</param>
1081       <param name="count">The maximum number of times the split can occur.</param>
1082       <exception cref="T:System.ArgumentNullException">
1083         <paramref name="input" /> is <see langword="null" />.</exception>
1084       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1085       <returns>An array of strings.</returns>
1086     </member>
1087     <member name="M:System.Text.RegularExpressions.Regex.Split(System.String,System.Int32,System.Int32)">
1088       <summary>Splits an input string a specified maximum number of times into an array of substrings, at the positions defined by a regular expression specified in the <see cref="T:System.Text.RegularExpressions.Regex" /> constructor. The search for the regular expression pattern starts at a specified character position in the input string.</summary>
1089       <param name="input">The string to be split.</param>
1090       <param name="count">The maximum number of times the split can occur.</param>
1091       <param name="startat">The character position in the input string where the search will begin.</param>
1092       <exception cref="T:System.ArgumentNullException">
1093         <paramref name="input" /> is <see langword="null" />.</exception>
1094       <exception cref="T:System.ArgumentOutOfRangeException">
1095         <paramref name="startat" /> is less than zero or greater than the length of <paramref name="input" />.</exception>
1096       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1097       <returns>An array of strings.</returns>
1098     </member>
1099     <member name="M:System.Text.RegularExpressions.Regex.Split(System.String,System.String)">
1100       <summary>Splits an input string into an array of substrings at the positions defined by a regular expression pattern.</summary>
1101       <param name="input">The string to split.</param>
1102       <param name="pattern">The regular expression pattern to match.</param>
1103       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
1104       <exception cref="T:System.ArgumentNullException">
1105         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
1106       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1107       <returns>An array of strings.</returns>
1108     </member>
1109     <member name="M:System.Text.RegularExpressions.Regex.Split(System.String,System.String,System.Text.RegularExpressions.RegexOptions)">
1110       <summary>Splits an input string into an array of substrings at the positions defined by a specified regular expression pattern. Specified options modify the matching operation.</summary>
1111       <param name="input">The string to split.</param>
1112       <param name="pattern">The regular expression pattern to match.</param>
1113       <param name="options">A bitwise combination of the enumeration values that provide options for matching.</param>
1114       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
1115       <exception cref="T:System.ArgumentNullException">
1116         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
1117       <exception cref="T:System.ArgumentOutOfRangeException">
1118         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.</exception>
1119       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1120       <returns>An array of strings.</returns>
1121     </member>
1122     <member name="M:System.Text.RegularExpressions.Regex.Split(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)">
1123       <summary>Splits an input string into an array of substrings at the positions defined by a specified regular expression pattern. Additional parameters specify options that modify the matching operation and a time-out interval if no match is found.</summary>
1124       <param name="input">The string to split.</param>
1125       <param name="pattern">The regular expression pattern to match.</param>
1126       <param name="options">A bitwise combination of the enumeration values that provide options for matching.</param>
1127       <param name="matchTimeout">A time-out interval, or <see cref="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout" /> to indicate that the method should not time out.</param>
1128       <exception cref="T:System.ArgumentException">A regular expression parsing error occurred.</exception>
1129       <exception cref="T:System.ArgumentNullException">
1130         <paramref name="input" /> or <paramref name="pattern" /> is <see langword="null" />.</exception>
1131       <exception cref="T:System.ArgumentOutOfRangeException">
1132         <paramref name="options" /> is not a valid bitwise combination of <see cref="T:System.Text.RegularExpressions.RegexOptions" /> values.  
1133   
1134  -or-  
1135   
1136  <paramref name="matchTimeout" /> is negative, zero, or greater than approximately 24 days.</exception>
1137       <exception cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException">A time-out occurred. For more information about time-outs, see the Remarks section.</exception>
1138       <returns>A string array.</returns>
1139     </member>
1140     <member name="M:System.Text.RegularExpressions.Regex.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1141       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data necessary to deserialize the current <see cref="T:System.Text.RegularExpressions.Regex" /> object.</summary>
1142       <param name="si">The object to populate with serialization information.</param>
1143       <param name="context">The place to store and retrieve serialized data. This parameter is reserved for future use.</param>
1144     </member>
1145     <member name="M:System.Text.RegularExpressions.Regex.ToString">
1146       <summary>Returns the regular expression pattern that was passed into the <see langword="Regex" /> constructor.</summary>
1147       <returns>The <paramref name="pattern" /> parameter that was passed into the <see langword="Regex" /> constructor.</returns>
1148     </member>
1149     <member name="M:System.Text.RegularExpressions.Regex.Unescape(System.String)">
1150       <summary>Converts any escaped characters in the input string.</summary>
1151       <param name="str">The input string containing the text to convert.</param>
1152       <exception cref="T:System.ArgumentException">
1153         <paramref name="str" /> includes an unrecognized escape sequence.</exception>
1154       <exception cref="T:System.ArgumentNullException">
1155         <paramref name="str" /> is <see langword="null" />.</exception>
1156       <returns>A string of characters with any escaped characters converted to their unescaped form.</returns>
1157     </member>
1158     <member name="M:System.Text.RegularExpressions.Regex.UseOptionC">
1159       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1160       <returns>
1161         <see langword="true" /> if the <see cref="P:System.Text.RegularExpressions.Regex.Options" /> property contains the <see cref="F:System.Text.RegularExpressions.RegexOptions.Compiled" /> option; otherwise, <see langword="false" />.</returns>
1162     </member>
1163     <member name="M:System.Text.RegularExpressions.Regex.UseOptionR">
1164       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1165       <returns>
1166         <see langword="true" /> if the <see cref="P:System.Text.RegularExpressions.Regex.Options" /> property contains the <see cref="F:System.Text.RegularExpressions.RegexOptions.RightToLeft" /> option; otherwise, <see langword="false" />.</returns>
1167     </member>
1168     <member name="M:System.Text.RegularExpressions.Regex.ValidateMatchTimeout(System.TimeSpan)">
1169       <summary>Checks whether a time-out interval is within an acceptable range.</summary>
1170       <param name="matchTimeout">The time-out interval to check.</param>
1171       <exception cref="T:System.ArgumentOutOfRangeException">The specified time-out is not within a valid range.</exception>
1172     </member>
1173     <member name="P:System.Text.RegularExpressions.Regex.CacheSize">
1174       <summary>Gets or sets the maximum number of entries in the current static cache of compiled regular expressions.</summary>
1175       <exception cref="T:System.ArgumentOutOfRangeException">The value in a set operation is less than zero.</exception>
1176       <returns>The maximum number of entries in the static cache.</returns>
1177     </member>
1178     <member name="P:System.Text.RegularExpressions.Regex.CapNames">
1179       <summary>Gets or sets a dictionary that maps named capturing groups to their index values.</summary>
1180       <exception cref="T:System.ArgumentNullException">The value assigned to the <see cref="P:System.Text.RegularExpressions.Regex.CapNames" /> property in a set operation is <see langword="null" />.</exception>
1181       <returns>A dictionary that maps named capturing groups to their index values.</returns>
1182     </member>
1183     <member name="P:System.Text.RegularExpressions.Regex.Caps">
1184       <summary>Gets or sets a dictionary that maps numbered capturing groups to their index values.</summary>
1185       <exception cref="T:System.ArgumentNullException">The value assigned to the <see cref="P:System.Text.RegularExpressions.Regex.Caps" /> property in a set operation is <see langword="null" />.</exception>
1186       <returns>A dictionary that maps numbered capturing groups to their index values.</returns>
1187     </member>
1188     <member name="P:System.Text.RegularExpressions.Regex.MatchTimeout">
1189       <summary>Gets the time-out interval of the current instance.</summary>
1190       <returns>The maximum time interval that can elapse in a pattern-matching operation before a <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> is thrown, or <see cref="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout" /> if time-outs are disabled.</returns>
1191     </member>
1192     <member name="P:System.Text.RegularExpressions.Regex.Options">
1193       <summary>Gets the options that were passed into the <see cref="T:System.Text.RegularExpressions.Regex" /> constructor.</summary>
1194       <returns>One or more members of the <see cref="T:System.Text.RegularExpressions.RegexOptions" /> enumeration that represent options that were passed to the <see cref="T:System.Text.RegularExpressions.Regex" /> constructor.</returns>
1195     </member>
1196     <member name="P:System.Text.RegularExpressions.Regex.RightToLeft">
1197       <summary>Gets a value that indicates whether the regular expression searches from right to left.</summary>
1198       <returns>
1199         <see langword="true" /> if the regular expression searches from right to left; otherwise, <see langword="false" />.</returns>
1200     </member>
1201     <member name="T:System.Text.RegularExpressions.RegexCompilationInfo">
1202       <summary>Provides information about a regular expression that is used to compile a regular expression to a stand-alone assembly.</summary>
1203     </member>
1204     <member name="M:System.Text.RegularExpressions.RegexCompilationInfo.#ctor(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean)">
1205       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexCompilationInfo" /> class that contains information about a regular expression to be included in an assembly.</summary>
1206       <param name="pattern">The regular expression to compile.</param>
1207       <param name="options">The regular expression options to use when compiling the regular expression.</param>
1208       <param name="name">The name of the type that represents the compiled regular expression.</param>
1209       <param name="fullnamespace">The namespace to which the new type belongs.</param>
1210       <param name="ispublic">
1211         <see langword="true" /> to make the compiled regular expression publicly visible; otherwise, <see langword="false" />.</param>
1212       <exception cref="T:System.ArgumentException">
1213         <paramref name="name" /> is <see cref="F:System.String.Empty" />.</exception>
1214       <exception cref="T:System.ArgumentNullException">
1215         <paramref name="pattern" /> is <see langword="null" />.  
1216   
1217  -or-  
1218   
1219  <paramref name="name" /> is <see langword="null" />.  
1220   
1221  -or-  
1222   
1223  <paramref name="fullnamespace" /> is <see langword="null" />.</exception>
1224     </member>
1225     <member name="M:System.Text.RegularExpressions.RegexCompilationInfo.#ctor(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean,System.TimeSpan)">
1226       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexCompilationInfo" /> class that contains information about a regular expression with a specified time-out value to be included in an assembly.</summary>
1227       <param name="pattern">The regular expression to compile.</param>
1228       <param name="options">The regular expression options to use when compiling the regular expression.</param>
1229       <param name="name">The name of the type that represents the compiled regular expression.</param>
1230       <param name="fullnamespace">The namespace to which the new type belongs.</param>
1231       <param name="ispublic">
1232         <see langword="true" /> to make the compiled regular expression publicly visible; otherwise, <see langword="false" />.</param>
1233       <param name="matchTimeout">The default time-out interval for the regular expression.</param>
1234       <exception cref="T:System.ArgumentException">
1235         <paramref name="name" /> is <see cref="F:System.String.Empty" />.</exception>
1236       <exception cref="T:System.ArgumentNullException">
1237         <paramref name="pattern" /> is <see langword="null" />.  
1238   
1239  -or-  
1240   
1241  <paramref name="name" /> is <see langword="null" />.  
1242   
1243  -or-  
1244   
1245  <paramref name="fullnamespace" /> is <see langword="null" />.</exception>
1246       <exception cref="T:System.ArgumentOutOfRangeException">
1247         <paramref name="matchTimeout" /> is negative, zero, or greater than approximately 24 days.</exception>
1248     </member>
1249     <member name="P:System.Text.RegularExpressions.RegexCompilationInfo.IsPublic">
1250       <summary>Gets or sets a value that indicates whether the compiled regular expression has public visibility.</summary>
1251       <returns>
1252         <see langword="true" /> if the regular expression has public visibility; otherwise, <see langword="false" />.</returns>
1253     </member>
1254     <member name="P:System.Text.RegularExpressions.RegexCompilationInfo.MatchTimeout">
1255       <summary>Gets or sets the regular expression's default time-out interval.</summary>
1256       <returns>The default maximum time interval that can elapse in a pattern-matching operation before a <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> is thrown, or <see cref="F:System.Text.RegularExpressions.Regex.InfiniteMatchTimeout" /> if time-outs are disabled.</returns>
1257     </member>
1258     <member name="P:System.Text.RegularExpressions.RegexCompilationInfo.Name">
1259       <summary>Gets or sets the name of the type that represents the compiled regular expression.</summary>
1260       <exception cref="T:System.ArgumentNullException">The value for this property is <see langword="null" />.</exception>
1261       <exception cref="T:System.ArgumentException">The value for this property is an empty string.</exception>
1262       <returns>The name of the new type.</returns>
1263     </member>
1264     <member name="P:System.Text.RegularExpressions.RegexCompilationInfo.Namespace">
1265       <summary>Gets or sets the namespace to which the new type belongs.</summary>
1266       <exception cref="T:System.ArgumentNullException">The value for this property is <see langword="null" />.</exception>
1267       <returns>The namespace of the new type.</returns>
1268     </member>
1269     <member name="P:System.Text.RegularExpressions.RegexCompilationInfo.Options">
1270       <summary>Gets or sets the options to use when compiling the regular expression.</summary>
1271       <returns>A bitwise combination of the enumeration values.</returns>
1272     </member>
1273     <member name="P:System.Text.RegularExpressions.RegexCompilationInfo.Pattern">
1274       <summary>Gets or sets the regular expression to compile.</summary>
1275       <exception cref="T:System.ArgumentNullException">The value for this property is <see langword="null" />.</exception>
1276       <returns>The regular expression to compile.</returns>
1277     </member>
1278     <member name="T:System.Text.RegularExpressions.RegexMatchTimeoutException">
1279       <summary>The exception that is thrown when the execution time of a regular expression pattern-matching method exceeds its time-out interval.</summary>
1280     </member>
1281     <member name="M:System.Text.RegularExpressions.RegexMatchTimeoutException.#ctor">
1282       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> class with a system-supplied message.</summary>
1283     </member>
1284     <member name="M:System.Text.RegularExpressions.RegexMatchTimeoutException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1285       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> class with serialized data.</summary>
1286       <param name="info">The object that contains the serialized data.</param>
1287       <param name="context">The stream that contains the serialized data.</param>
1288     </member>
1289     <member name="M:System.Text.RegularExpressions.RegexMatchTimeoutException.#ctor(System.String)">
1290       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> class with the specified message string.</summary>
1291       <param name="message">A string that describes the exception.</param>
1292     </member>
1293     <member name="M:System.Text.RegularExpressions.RegexMatchTimeoutException.#ctor(System.String,System.Exception)">
1294       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
1295       <param name="message">A string that describes the exception.</param>
1296       <param name="inner">The exception that is the cause of the current exception.</param>
1297     </member>
1298     <member name="M:System.Text.RegularExpressions.RegexMatchTimeoutException.#ctor(System.String,System.String,System.TimeSpan)">
1299       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> class with information about the regular expression pattern, the input text, and the time-out interval.</summary>
1300       <param name="regexInput">The input text processed by the regular expression engine when the time-out occurred.</param>
1301       <param name="regexPattern">The pattern used by the regular expression engine when the time-out occurred.</param>
1302       <param name="matchTimeout">The time-out interval.</param>
1303     </member>
1304     <member name="M:System.Text.RegularExpressions.RegexMatchTimeoutException.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1305       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize a <see cref="T:System.Text.RegularExpressions.RegexMatchTimeoutException" /> object.</summary>
1306       <param name="info">The serialization information object to populate with data.</param>
1307       <param name="context">The destination for this serialization.</param>
1308     </member>
1309     <member name="P:System.Text.RegularExpressions.RegexMatchTimeoutException.Input">
1310       <summary>Gets the input text that the regular expression engine was processing when the time-out occurred.</summary>
1311       <returns>The regular expression input text.</returns>
1312     </member>
1313     <member name="P:System.Text.RegularExpressions.RegexMatchTimeoutException.MatchTimeout">
1314       <summary>Gets the time-out interval for a regular expression match.</summary>
1315       <returns>The time-out interval.</returns>
1316     </member>
1317     <member name="P:System.Text.RegularExpressions.RegexMatchTimeoutException.Pattern">
1318       <summary>Gets the regular expression pattern that was used in the matching operation when the time-out occurred.</summary>
1319       <returns>The regular expression pattern.</returns>
1320     </member>
1321     <member name="T:System.Text.RegularExpressions.RegexOptions">
1322       <summary>Provides enumerated values to use to set regular expression options.</summary>
1323     </member>
1324     <member name="F:System.Text.RegularExpressions.RegexOptions.Compiled">
1325       <summary>Specifies that the regular expression is compiled to MSIL code, instead of being interpreted. Compiled regular expressions maximize run-time performance at the expense of initialization time. This value should not be assigned to the <see cref="P:System.Text.RegularExpressions.RegexCompilationInfo.Options" /> property when calling the <see cref="M:System.Text.RegularExpressions.Regex.CompileToAssembly(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName)" /> method. For more information, see the "Compiled Regular Expressions" section in the Regular Expression Options article.</summary>
1326     </member>
1327     <member name="F:System.Text.RegularExpressions.RegexOptions.CultureInvariant">
1328       <summary>Specifies that cultural differences in language is ignored. For more information, see the "Comparison Using the Invariant Culture" section in the Regular Expression Options article.</summary>
1329     </member>
1330     <member name="F:System.Text.RegularExpressions.RegexOptions.ECMAScript">
1331       <summary>Enables ECMAScript-compliant behavior for the expression. This value can be used only in conjunction with the <see cref="F:System.Text.RegularExpressions.RegexOptions.IgnoreCase" />, <see cref="F:System.Text.RegularExpressions.RegexOptions.Multiline" />, and <see cref="F:System.Text.RegularExpressions.RegexOptions.Compiled" /> values. The use of this value with any other values results in an exception.  
1332   
1333  For more information on the <see cref="F:System.Text.RegularExpressions.RegexOptions.ECMAScript" /> option, see the "ECMAScript Matching Behavior" section in the Regular Expression Options article.</summary>
1334     </member>
1335     <member name="F:System.Text.RegularExpressions.RegexOptions.ExplicitCapture">
1336       <summary>Specifies that the only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt;...). This allows unnamed parentheses to act as noncapturing groups without the syntactic clumsiness of the expression (?:...). For more information, see the "Explicit Captures Only" section in the Regular Expression Options article.</summary>
1337     </member>
1338     <member name="F:System.Text.RegularExpressions.RegexOptions.IgnoreCase">
1339       <summary>Specifies case-insensitive matching. For more information, see the "Case-Insensitive Matching " section in the Regular Expression Options article.</summary>
1340     </member>
1341     <member name="F:System.Text.RegularExpressions.RegexOptions.IgnorePatternWhitespace">
1342       <summary>Eliminates unescaped white space from the pattern and enables comments marked with #. However, this value does not affect or eliminate white space in character classes, numeric quantifiers, or tokens that mark the beginning of individual regular expression language elements. For more information, see the "Ignore White Space" section of the Regular Expression Options article.</summary>
1343     </member>
1344     <member name="F:System.Text.RegularExpressions.RegexOptions.Multiline">
1345       <summary>Multiline mode. Changes the meaning of ^ and $ so they match at the beginning and end, respectively, of any line, and not just the beginning and end of the entire string. For more information, see the "Multiline Mode" section in the Regular Expression Options article.</summary>
1346     </member>
1347     <member name="F:System.Text.RegularExpressions.RegexOptions.None">
1348       <summary>Specifies that no options are set. For more information about the default behavior of the regular expression engine, see the "Default Options" section in the Regular Expression Options article.</summary>
1349     </member>
1350     <member name="F:System.Text.RegularExpressions.RegexOptions.RightToLeft">
1351       <summary>Specifies that the search will be from right to left instead of from left to right. For more information, see the "Right-to-Left Mode" section in the Regular Expression Options article.</summary>
1352     </member>
1353     <member name="F:System.Text.RegularExpressions.RegexOptions.Singleline">
1354       <summary>Specifies single-line mode. Changes the meaning of the dot (.) so it matches every character (instead of every character except \n). For more information, see the "Single-line Mode" section in the Regular Expression Options article.</summary>
1355     </member>
1356     <member name="T:System.Text.RegularExpressions.RegexParseError">
1357       <summary>Specifies the detailed underlying reason why a <see cref="T:System.Text.RegularExpressions.RegexParseException" /> is thrown when a regular expression contains a parsing error.</summary>
1358     </member>
1359     <member name="F:System.Text.RegularExpressions.RegexParseError.AlternationHasComment">
1360       <summary>An alternation construct in a regular expression contains a comment.</summary>
1361     </member>
1362     <member name="F:System.Text.RegularExpressions.RegexParseError.AlternationHasMalformedCondition">
1363       <summary>An alternation in a regular expression has a malformed condition.</summary>
1364     </member>
1365     <member name="F:System.Text.RegularExpressions.RegexParseError.AlternationHasMalformedReference">
1366       <summary>An alternation construct in a regular expression contains a malformed reference.</summary>
1367     </member>
1368     <member name="F:System.Text.RegularExpressions.RegexParseError.AlternationHasNamedCapture">
1369       <summary>An alternation construct in a regular expression uses a named capture.</summary>
1370     </member>
1371     <member name="F:System.Text.RegularExpressions.RegexParseError.AlternationHasTooManyConditions">
1372       <summary>An alternation in a regular expression has too many conditions.</summary>
1373     </member>
1374     <member name="F:System.Text.RegularExpressions.RegexParseError.AlternationHasUndefinedReference">
1375       <summary>An alternation construct in a regular expression contains an undefined reference.</summary>
1376     </member>
1377     <member name="F:System.Text.RegularExpressions.RegexParseError.CaptureGroupNameInvalid">
1378       <summary>The group name of a captured group in a regular expression is invalid.</summary>
1379     </member>
1380     <member name="F:System.Text.RegularExpressions.RegexParseError.CaptureGroupOfZero">
1381       <summary>A regular expression defines a numbered subexpression named zero.</summary>
1382     </member>
1383     <member name="F:System.Text.RegularExpressions.RegexParseError.ExclusionGroupNotLast">
1384       <summary>A character class in a regular expression with an exclusion group is not the last part of the character class.</summary>
1385     </member>
1386     <member name="F:System.Text.RegularExpressions.RegexParseError.InsufficientClosingParentheses">
1387       <summary>A regular expression has a non-escaped left parenthesis, or misses a closing right parenthesis.</summary>
1388     </member>
1389     <member name="F:System.Text.RegularExpressions.RegexParseError.InsufficientOpeningParentheses">
1390       <summary>A regular expression has a non-escaped right parenthesis, or misses an opening left parenthesis.</summary>
1391     </member>
1392     <member name="F:System.Text.RegularExpressions.RegexParseError.InsufficientOrInvalidHexDigits">
1393       <summary>A hexadecimal escape sequence in a regular expression does not have enough digits, or contains invalid digits.</summary>
1394     </member>
1395     <member name="F:System.Text.RegularExpressions.RegexParseError.InvalidGroupingConstruct">
1396       <summary>A grouping construct in a regular expression is invalid or malformed.</summary>
1397     </member>
1398     <member name="F:System.Text.RegularExpressions.RegexParseError.InvalidUnicodePropertyEscape">
1399       <summary>A Unicode property escape in a regular expression is invalid or unknown.</summary>
1400     </member>
1401     <member name="F:System.Text.RegularExpressions.RegexParseError.MalformedNamedReference">
1402       <summary>A named reference in a regular expression is malformed.</summary>
1403     </member>
1404     <member name="F:System.Text.RegularExpressions.RegexParseError.MalformedUnicodePropertyEscape">
1405       <summary>A Unicode property escape is malformed.</summary>
1406     </member>
1407     <member name="F:System.Text.RegularExpressions.RegexParseError.MissingControlCharacter">
1408       <summary>A control character in a regular expression is missing.</summary>
1409     </member>
1410     <member name="F:System.Text.RegularExpressions.RegexParseError.NestedQuantifiersNotParenthesized">
1411       <summary>Repeated quantifiers on another quantifier inside a regular expression are not grouped in parentheses.</summary>
1412     </member>
1413     <member name="F:System.Text.RegularExpressions.RegexParseError.QuantifierAfterNothing">
1414       <summary>A quantifier in a regular expression is in a position where it cannot quantify anything, like at the beginning of a regular expression or in a group.</summary>
1415     </member>
1416     <member name="F:System.Text.RegularExpressions.RegexParseError.QuantifierOrCaptureGroupOutOfRange">
1417       <summary>A captured group or a quantifier in a regular expression is not within range, that is, it is larger than <see cref="F:System.Int32.MaxValue" />.</summary>
1418     </member>
1419     <member name="F:System.Text.RegularExpressions.RegexParseError.ReversedCharacterRange">
1420       <summary>A character class in a regular expression contains an inverse character range, like z-a instead of a-z.</summary>
1421     </member>
1422     <member name="F:System.Text.RegularExpressions.RegexParseError.ReversedQuantifierRange">
1423       <summary>A quantifier range in a regular expression is inverse, like <c>{10,1}</c> instead of <c>(1,10}</c>.</summary>
1424     </member>
1425     <member name="F:System.Text.RegularExpressions.RegexParseError.ShorthandClassInCharacterRange">
1426       <summary>A character-class in a regular expression contains a short-hand class that is not allowed inside a character class.</summary>
1427     </member>
1428     <member name="F:System.Text.RegularExpressions.RegexParseError.UndefinedNamedReference">
1429       <summary>A used named reference in a regular expression is not defined.</summary>
1430     </member>
1431     <member name="F:System.Text.RegularExpressions.RegexParseError.UndefinedNumberedReference">
1432       <summary>A used numbered reference in a regular expression is not defined.</summary>
1433     </member>
1434     <member name="F:System.Text.RegularExpressions.RegexParseError.UnescapedEndingBackslash">
1435       <summary>A regular expression ends with a non-escaped ending backslash.</summary>
1436     </member>
1437     <member name="F:System.Text.RegularExpressions.RegexParseError.Unknown">
1438       <summary>An unknown regular expression parse error.</summary>
1439     </member>
1440     <member name="F:System.Text.RegularExpressions.RegexParseError.UnrecognizedControlCharacter">
1441       <summary>A control character in a regular expression is not recognized.</summary>
1442     </member>
1443     <member name="F:System.Text.RegularExpressions.RegexParseError.UnrecognizedEscape">
1444       <summary>An escape character or sequence in a regular expression is invalid.</summary>
1445     </member>
1446     <member name="F:System.Text.RegularExpressions.RegexParseError.UnrecognizedUnicodeProperty">
1447       <summary>A unicode property in a regular expression is not recognized, or invalid.</summary>
1448     </member>
1449     <member name="F:System.Text.RegularExpressions.RegexParseError.UnterminatedBracket">
1450       <summary>A regular expression has a non-escaped left square bracket, or misses a closing right square bracket.</summary>
1451     </member>
1452     <member name="F:System.Text.RegularExpressions.RegexParseError.UnterminatedComment">
1453       <summary>A comment in a regular expression is not terminated.</summary>
1454     </member>
1455     <member name="T:System.Text.RegularExpressions.RegexParseException">
1456       <summary>An exception as a result of a parse error in a regular expression, with detailed information in the <see cref="P:System.Text.RegularExpressions.RegexParseException.Error" /> and <see cref="P:System.Text.RegularExpressions.RegexParseException.Offset" /> properties.</summary>
1457     </member>
1458     <member name="M:System.Text.RegularExpressions.RegexParseException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1459       <summary>Sets the <paramref name="info" /> object with the parameter name and additional exception information.</summary>
1460       <param name="info">The object that holds the serialized object data.</param>
1461       <param name="context">The contextual information about the source or destination.</param>
1462       <exception cref="T:System.ArgumentNullException">
1463         <paramref name="info" /> is <see langword="null" />.</exception>
1464     </member>
1465     <member name="P:System.Text.RegularExpressions.RegexParseException.Error">
1466       <summary>Gets the error that happened during parsing.</summary>
1467       <returns>The error that occured during parsing.</returns>
1468     </member>
1469     <member name="P:System.Text.RegularExpressions.RegexParseException.Offset">
1470       <summary>Gets the zero-based character offset in the regular expression pattern where the parse error occurs.</summary>
1471       <returns>The offset at which the parse error occurs.</returns>
1472     </member>
1473     <member name="T:System.Text.RegularExpressions.RegexRunner">
1474       <summary>The <see cref="T:System.Text.RegularExpressions.RegexRunner" /> class is the base class for compiled regular expressions.</summary>
1475     </member>
1476     <member name="F:System.Text.RegularExpressions.RegexRunner.runcrawl">
1477       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1478     </member>
1479     <member name="F:System.Text.RegularExpressions.RegexRunner.runcrawlpos">
1480       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1481     </member>
1482     <member name="F:System.Text.RegularExpressions.RegexRunner.runmatch">
1483       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1484     </member>
1485     <member name="F:System.Text.RegularExpressions.RegexRunner.runregex">
1486       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1487     </member>
1488     <member name="F:System.Text.RegularExpressions.RegexRunner.runstack">
1489       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1490     </member>
1491     <member name="F:System.Text.RegularExpressions.RegexRunner.runstackpos">
1492       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1493     </member>
1494     <member name="F:System.Text.RegularExpressions.RegexRunner.runtext">
1495       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1496     </member>
1497     <member name="F:System.Text.RegularExpressions.RegexRunner.runtextbeg">
1498       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1499     </member>
1500     <member name="F:System.Text.RegularExpressions.RegexRunner.runtextend">
1501       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1502     </member>
1503     <member name="F:System.Text.RegularExpressions.RegexRunner.runtextpos">
1504       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1505     </member>
1506     <member name="F:System.Text.RegularExpressions.RegexRunner.runtextstart">
1507       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1508     </member>
1509     <member name="F:System.Text.RegularExpressions.RegexRunner.runtrack">
1510       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1511     </member>
1512     <member name="F:System.Text.RegularExpressions.RegexRunner.runtrackcount">
1513       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1514     </member>
1515     <member name="F:System.Text.RegularExpressions.RegexRunner.runtrackpos">
1516       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1517     </member>
1518     <member name="M:System.Text.RegularExpressions.RegexRunner.#ctor">
1519       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexRunner" /> class.</summary>
1520     </member>
1521     <member name="M:System.Text.RegularExpressions.RegexRunner.Capture(System.Int32,System.Int32,System.Int32)">
1522       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1523       <param name="capnum">A capture number.</param>
1524       <param name="start">The starting position of the capture.</param>
1525       <param name="end">The ending position of the capture.</param>
1526     </member>
1527     <member name="M:System.Text.RegularExpressions.RegexRunner.CharInClass(System.Char,System.String)">
1528       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method. Determines whether a character is in a character class.</summary>
1529       <param name="ch">A character to test.</param>
1530       <param name="charClass">The internal name of a character class.</param>
1531       <returns>
1532         <see langword="true" /> if the <paramref name="ch" /> parameter is in the character class specified by the <paramref name="charClass" /> parameter.</returns>
1533     </member>
1534     <member name="M:System.Text.RegularExpressions.RegexRunner.CharInSet(System.Char,System.String,System.String)">
1535       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1536       <param name="ch">A character.</param>
1537       <param name="set">The character set.</param>
1538       <param name="category">The character category.</param>
1539       <returns>Returns <see cref="T:System.Boolean" />.</returns>
1540     </member>
1541     <member name="M:System.Text.RegularExpressions.RegexRunner.CheckTimeout">
1542       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1543     </member>
1544     <member name="M:System.Text.RegularExpressions.RegexRunner.Crawl(System.Int32)">
1545       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1546       <param name="i">A number to save.</param>
1547     </member>
1548     <member name="M:System.Text.RegularExpressions.RegexRunner.Crawlpos">
1549       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1550       <returns>Returns <see cref="T:System.Int32" />.</returns>
1551     </member>
1552     <member name="M:System.Text.RegularExpressions.RegexRunner.DoubleCrawl">
1553       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1554     </member>
1555     <member name="M:System.Text.RegularExpressions.RegexRunner.DoubleStack">
1556       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1557     </member>
1558     <member name="M:System.Text.RegularExpressions.RegexRunner.DoubleTrack">
1559       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1560     </member>
1561     <member name="M:System.Text.RegularExpressions.RegexRunner.EnsureStorage">
1562       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1563     </member>
1564     <member name="M:System.Text.RegularExpressions.RegexRunner.FindFirstChar">
1565       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1566       <returns>Returns <see cref="T:System.Boolean" />.</returns>
1567     </member>
1568     <member name="M:System.Text.RegularExpressions.RegexRunner.Go">
1569       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1570     </member>
1571     <member name="M:System.Text.RegularExpressions.RegexRunner.InitTrackCount">
1572       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1573     </member>
1574     <member name="M:System.Text.RegularExpressions.RegexRunner.IsBoundary(System.Int32,System.Int32,System.Int32)">
1575       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1576       <param name="index">The possible boundary position.</param>
1577       <param name="startpos">The starting position.</param>
1578       <param name="endpos">The ending position.</param>
1579       <returns>Returns <see cref="T:System.Boolean" />.</returns>
1580     </member>
1581     <member name="M:System.Text.RegularExpressions.RegexRunner.IsECMABoundary(System.Int32,System.Int32,System.Int32)">
1582       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1583       <param name="index">The possible ECMA boundary position.</param>
1584       <param name="startpos">The starting position.</param>
1585       <param name="endpos">The ending position.</param>
1586       <returns>Returns <see cref="T:System.Boolean" />.</returns>
1587     </member>
1588     <member name="M:System.Text.RegularExpressions.RegexRunner.IsMatched(System.Int32)">
1589       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1590       <param name="cap">The capture number.</param>
1591       <returns>Returns <see cref="T:System.Boolean" />.</returns>
1592     </member>
1593     <member name="M:System.Text.RegularExpressions.RegexRunner.MatchIndex(System.Int32)">
1594       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1595       <param name="cap">The capture number.</param>
1596       <returns>Returns <see cref="T:System.Int32" />.</returns>
1597     </member>
1598     <member name="M:System.Text.RegularExpressions.RegexRunner.MatchLength(System.Int32)">
1599       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1600       <param name="cap">The capture number.</param>
1601       <returns>Returns <see cref="T:System.Int32" />.</returns>
1602     </member>
1603     <member name="M:System.Text.RegularExpressions.RegexRunner.Popcrawl">
1604       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1605       <returns>Returns <see cref="T:System.Int32" />.</returns>
1606     </member>
1607     <member name="M:System.Text.RegularExpressions.RegexRunner.Scan(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
1608       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1609       <param name="regex">An instance of the regular expression engine.</param>
1610       <param name="text">The text to scan for a pattern match.</param>
1611       <param name="textbeg">The zero-based starting position in <paramref name="text" /> at which the regular expression engine scans for a match.</param>
1612       <param name="textend">The zero-based ending position in <paramref name="text" /> at which the regular expression engine scans for a match.</param>
1613       <param name="textstart">The zero-based starting position to scan for this match.</param>
1614       <param name="prevlen">The number of characters in the previous match.</param>
1615       <param name="quick">
1616         <see langword="true" /> to search for a match in quick mode; otherwise, <see langword="false" />.</param>
1617       <returns>A match.</returns>
1618     </member>
1619     <member name="M:System.Text.RegularExpressions.RegexRunner.Scan(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.TimeSpan)">
1620       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1621       <param name="regex">An instance of the regular expression engine.</param>
1622       <param name="text">The text to scan for a pattern match.</param>
1623       <param name="textbeg">The zero-based starting position in <paramref name="text" /> at which the regular expression engine scans for a match.</param>
1624       <param name="textend">The zero-based ending position in <paramref name="text" /> at which the regular expression engine scans for a match.</param>
1625       <param name="textstart">The zero-based starting position to scan for this match.</param>
1626       <param name="prevlen">The number of characters in the previous match.</param>
1627       <param name="quick">
1628         <see langword="true" /> to search for a match in quick mode; otherwise, <see langword="false" />.</param>
1629       <param name="timeout">The timeout interval.</param>
1630       <returns>A match.</returns>
1631     </member>
1632     <member name="M:System.Text.RegularExpressions.RegexRunner.TransferCapture(System.Int32,System.Int32,System.Int32,System.Int32)">
1633       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1634       <param name="capnum">A capture number.</param>
1635       <param name="uncapnum">A saved capture number.</param>
1636       <param name="start">The starting position.</param>
1637       <param name="end">The ending position.</param>
1638     </member>
1639     <member name="M:System.Text.RegularExpressions.RegexRunner.Uncapture">
1640       <summary>Used by a <see cref="T:System.Text.RegularExpressions.Regex" /> object generated by the <see cref="Overload:System.Text.RegularExpressions.Regex.CompileToAssembly" /> method.</summary>
1641     </member>
1642     <member name="T:System.Text.RegularExpressions.RegexRunnerFactory">
1643       <summary>Creates a <see cref="T:System.Text.RegularExpressions.RegexRunner" /> class for a compiled regular expression.</summary>
1644     </member>
1645     <member name="M:System.Text.RegularExpressions.RegexRunnerFactory.#ctor">
1646       <summary>Initializes a new instance of the <see cref="T:System.Text.RegularExpressions.RegexRunnerFactory" /> class.</summary>
1647     </member>
1648     <member name="M:System.Text.RegularExpressions.RegexRunnerFactory.CreateInstance">
1649       <summary>When overridden in a derived class, creates a <see cref="T:System.Text.RegularExpressions.RegexRunner" /> object for a specific compiled regular expression.</summary>
1650       <returns>A <see cref="T:System.Text.RegularExpressions.RegexRunner" /> object designed to execute a specific compiled regular expression.</returns>
1651     </member>
1652   </members>
1653 </doc>