1 instantiation of MatchCollection
System (1)
regex\system\text\regularexpressions\Regex.cs (1)
946return new MatchCollection(this, input, 0, input.Length, startat);
13 references to MatchCollection
System (7)
regex\system\text\regularexpressions\Regex.cs (5)
886public static MatchCollection Matches(String input, String pattern) { 899public static MatchCollection Matches(String input, String pattern, RegexOptions options) { 908static MatchCollection Matches(String input, String pattern, RegexOptions options, TimeSpan matchTimeout) { 923public MatchCollection Matches(String input) { 941public MatchCollection Matches(String input, int startat) {
regex\system\text\regularexpressions\RegexMatchCollection.cs (2)
211internal MatchCollection _matchcoll; 219internal MatchEnumerator(MatchCollection matchcoll) {
System.Web (3)
Configuration\HttpCapabilitiesBase.cs (1)
410MatchCollection matches = regex.Matches(ua);
Configuration\RegexWorker.cs (1)
40MatchCollection matches = RefPat.Matches(from);
Handlers\AssemblyResourceLoader.cs (1)
661MatchCollection matches = webResourceRegex.Matches(content);
System.Web.Extensions (1)
UI\ScriptResourceAttribute.cs (1)
108MatchCollection matches = _webResourceRegEx.Matches(content);
System.Xml (2)
System\Xml\XmlConvert.cs (2)
93MatchCollection mc = null; 188MatchCollection mc = null;