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