5 references to LastIndexOfAny
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\ServiceParser.cs (1)
423int newlineIndex = this.serviceText.LastIndexOfAny(newlineChars, textPos - 1);
System.Web (4)
UI\SimpleWebHandlerParser.cs (1)
240int newlineIndex = text.LastIndexOfAny(s_newlineChars, textPos-1);
UI\TemplateParser.cs (3)
1671int newlineIndex = text.LastIndexOfAny(s_newlineChars, startOfCode-1); 2560int newlineIndex = text.LastIndexOfAny(s_newlineChars, codeGroup.Index-1); 2758int column = attrValue.Index - text.LastIndexOfAny(s_newlineChars, attrValue.Index - 1);