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