58 references to Match
System (4)
regex\system\text\regularexpressions\Regex.cs (1)
841return Match(input, UseOptionR() ? input.Length : 0);
regex\system\text\regularexpressions\RegexReplacement.cs (3)
196match = regex.Match(input, startat); 275match = regex.Match(input, startat); 358match = regex.Match(input, startat);
System.Web (36)
Configuration\CapabilitiesPattern.cs (4)
59if ((match = textPat.Match(text, textpos)).Success && match.Length > 0) { 70if ((match = refPat.Match(text, textpos)).Success) { 77else if ((match = varPat.Match(text, textpos)).Success) { 85match = errorPat.Match(text, textpos);
Configuration\HttpCapabilitiesSectionHandler.cs (3)
405if ((match = wsRegex.Match(text, textpos)).Success) { 413if ((match = lineRegex.Match(text, textpos)).Success) { 421match = errRegex.Match(text, textpos);
UI\BatchParser.cs (4)
134if ((match = textRegex.Match(text, textPos)).Success) { 147if ((match = directiveRegex.Match(text, textPos)).Success) { 154else if ((match = includeRegex.Match(text, textPos)).Success) { 159else if ((match = commentRegex.Match(text, textPos)).Success) {
UI\ControlBuilder.cs (10)
1352if ((match = bindExpressionRegex.Match(codeBlockBuilder.Content, 0)).Success || (match = bindItemExpressionRegex.Match(codeBlockBuilder.Content, 0)).Success) { 2659if ((match = databindRegex.Match(attribvalue, 0)).Success) { 2678if ((match = bindExpressionRegex.Match(code, 0)).Success) { 2682else if ((match = bindItemExpressionRegex.Match(code, 0)).Success) { 2690(match = evalExpressionRegex.Match(code, 0)).Success) { 2700if (!(match = bindParametersRegex.Match(paramString, 0)).Success) { 2704else if (!(match = bindItemParametersRegex.Match(paramString, 0)).Success) { 2717if (!(match = formatStringRegex.Match(formatString, 0)).Success) { 2744else if ((match = expressionBuilderRegex.Match(attribvalue, 0)).Success) {
UI\CssStyleCollection.cs (1)
307if ((match = _styleAttribRegex.Match( s, 0)).Success) {
UI\SimpleWebHandlerParser.cs (1)
222match = directiveRegex.Match(text, textPos);
UI\TemplateParser.cs (13)
962if ((match = textRegex.Match(text, textPos)).Success) 990(match = directiveRegex.Match(text, textPos)).Success) 1026else if ((match = includeRegex.Match(text, textPos)).Success) 1042else if ((match = commentRegex.Match(text, textPos)).Success) 1054(match = aspExprRegex.Match(text, textPos)).Success) 1062else if (!flags[inScriptTag] && (match = aspEncodedExprRegex.Match(text, textPos)).Success) { 1071(match = databindExprRegex.Match(text, textPos)).Success) { 1081(match = aspCodeRegex.Match(text, textPos)).Success) 1101lastGTIndex > textPos && (match = tagRegex.Match(text, textPos)).Success) 1118else if ((match = endtagRegex.Match(text, textPos)).Success) 1715return ControlBuilder.expressionBuilderRegex.Match(val, 0).Success; 2271Match match = gtRegex.Match(text, textPos); 2290Match matchLessThan = ltRegex.Match(tag, 1);
System.Web.Extensions (2)
UI\ScriptRegistrationManager.cs (2)
656for (Match match = ScriptTagRegex.Match(scriptContent, lastIndex); match.Success; match = ScriptTagRegex.Match(scriptContent, lastIndex)) {
System.Web.Mobile (10)
UI\MobileControls\Design\Util\SimpleParser.cs (10)
120if ((match = _textRegex.Match(text, textPos)).Success) 139if ((match = _unclosedTagRegex.Match(text, textPos)).Success) 146else if ((match = _tagRegex.Match(text, textPos)).Success) 152else if ((match = _endtagRegex.Match(text, textPos)).Success) 184else if ((match = _directiveRegex.Match(text, textPos)).Success) 191else if ((match = _includeRegex.Match(text, textPos)).Success) 198else if ((match = _commentRegex.Match(text, textPos)).Success) 204else if ((match = _aspExprRegex.Match(text, textPos)).Success) 212else if ((match = _databindExprRegex.Match(text, textPos)).Success) 218else if ((match = _aspCodeRegex.Match(text, textPos)).Success)
System.Web.Services (6)
System\Web\Services\Discovery\LinkGrep.cs (6)
50if ((match = doctypeDirectiveRegex.Match(text, textpos)).Success) { 64if ((match = whitespaceRegex.Match(text, textpos)).Success) { 70else if ((match = textRegex.Match(text, textpos)).Success) { 84if ((match = tagRegex.Match(text, textpos)).Success) 127else if ((match = endtagRegex.Match(text, textpos)).Success) { 133else if ((match = commentRegex.Match(text, textpos)).Success) {