22 instantiations of HttpParseException
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\ServiceParser.cs (1)
256return new HttpParseException(message, innerException, this.virtualPath, sourceCode, this.lineNumber);
System.Web (21)
Compilation\AssemblyBuilder.cs (3)
484throw new HttpParseException(e.Message, null /*innerException*/, 488throw new HttpParseException(e.Message, null /*innerException*/, 492throw new HttpParseException(e.Message, e,
Compilation\BuildProvidersCompiler.cs (1)
321new HttpParseException(_firstException.Message, _firstException, _firstException.VirtualPath,
Configuration\BrowserCapabilitiesCodeGenerator.cs (8)
483throw new HttpParseException(e.Message, null /*innerException*/, virtualDir + "/" + NoPathFileName(fileName), null /*sourceCode*/, e.LineNumber); 486throw new HttpParseException(e.Message, null /*innerException*/, fileName, null /*sourceCode*/, e.LineNumber); 491throw new HttpParseException(e.Message, null /*innerException*/, virtualDir + "/" + NoPathFileName(fileName), null /*sourceCode*/, e.LineNumber); 494throw new HttpParseException(e.Message, null /*innerException*/, fileName, null /*sourceCode*/, e.LineNumber); 592throw new HttpParseException(e.Message, null /*innerException*/, virtualDir + "/" + NoPathFileName(fileName), null /*sourceCode*/, e.LineNumber); 595throw new HttpParseException(e.Message, null /*innerException*/, fileName, null /*sourceCode*/, e.LineNumber); 600throw new HttpParseException(e.Message, null /*innerException*/, virtualDir + "/" + NoPathFileName(fileName), null /*sourceCode*/, e.LineNumber); 603throw new HttpParseException(e.Message, null /*innerException*/, fileName, null /*sourceCode*/, e.LineNumber);
UI\SimpleWebHandlerParser.cs (3)
188throw new HttpParseException(e.Message, e, _virtualPath, _sourceString, _lineNumber); 208throw new HttpParseException(e.Message, e, _virtualPath, s, _lineNumber); 473throw new HttpParseException(null, e, _virtualPath, _sourceString, _lineNumber);
UI\TagNameToTypeMapper.cs (2)
321throw new HttpParseException(e.Message, e, 415throw new HttpParseException(e.Message, e,
UI\TemplateParser.cs (4)
244throw new HttpParseException(ex.Message, ex); 831HttpParseException ex = new HttpParseException(firstError.ErrorText, 860throw new HttpParseException(e.Message, e, 1234ProcessException(new HttpParseException(message, null, entry.VirtualPath, entry._inputText, entry.Line));
16 references to HttpParseException
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\ServiceParser.cs (1)
135/// <exception cref="System.Web.HttpParseException"/>
System.Web (13)
Compilation\BuildManager.cs (3)
207else if (e is HttpParseException) { 208foreach (ParserError parseError in ((HttpParseException)e).ParserErrors) { 2595catch (HttpParseException parseException) {
Compilation\BuildProvidersCompiler.cs (3)
281private HttpParseException _firstException; 320HttpParseException newException = 621catch (HttpParseException ex) {
ErrorFormatter.cs (2)
1806HttpParseException _excep; 1809internal ParseErrorFormatter(HttpParseException e, string virtualPath,
Management\WebEvents.cs (1)
358else if (e is HttpParseException) {
UI\TemplateParser.cs (4)
242if (ex is HttpParseException) 251HttpParseException hpe = ex as HttpParseException; 831HttpParseException ex = new HttpParseException(firstError.ErrorText,
System.Web.Mobile (2)
Mobile\MobileErrorInfo.cs (2)
85HttpParseException parseException = e as HttpParseException;