4 instantiations of ParserError
System.Web (4)
HttpException.cs (1)
561ParserError thisError = new ParserError(Message, _virtualPath, _line);
UI\TemplateParser.cs (3)
226ParserError parseError = new ParserError(message, CurrentVirtualPath, _lineNumber); 253parseError = new ParserError(hpe.Message, hpe.VirtualPath, hpe.Line); 256parseError = new ParserError(ex.Message, CurrentVirtualPath, _lineNumber);
18 references to ParserError
System.Web (18)
Compilation\BuildManager.cs (2)
174internal static void ReportParseError(ParserError parseError) { 208foreach (ParserError parseError in ((HttpParseException)e).ParserErrors) {
Compilation\ClientBuildManagerCallback.cs (1)
30public virtual void ReportParseError(ParserError error) {}
HttpException.cs (12)
561ParserError thisError = new ParserError(Message, _virtualPath, _line); 647public ParserErrorCollection(ParserError[] value) { 651public ParserError this[int index] { 652get { return ((ParserError)List[index]); } 656public int Add(ParserError value) { 660public void AddRange(ParserError[] value) { 675foreach(ParserError parserError in value) { 680public bool Contains(ParserError value) { 684public void CopyTo(ParserError[] array, int index) { 688public int IndexOf(ParserError value) { 692public void Insert(int index, ParserError value) { 696public void Remove(ParserError value) {
UI\TemplateParser.cs (3)
226ParserError parseError = new ParserError(message, CurrentVirtualPath, _lineNumber); 249ParserError parseError; 821ParserError firstError = ParserErrors[0];