12 instantiations of HttpCompileException
System.ServiceModel.Activation (6)
System\ServiceModel\Activation\ServiceParser.cs (6)
449
new
HttpCompileException
(parseException.Message, parseException));
688
new
HttpCompileException
(parseException.Message, parseException));
694
new
HttpCompileException
(parseException.Message, parseException));
700
new
HttpCompileException
(parseException.Message, parseException));
720
new
HttpCompileException
(parseException.Message, parseException));
725
new
HttpCompileException
(exception.Message, exception));
System.Web (4)
Compilation\AssemblyBuilder.cs (1)
1051
throw new
HttpCompileException
(results, GetErrorSourceFileContents(results));
Compilation\AssemblyResolver.cs (1)
327
throw new
HttpCompileException
(message);
Compilation\BuildProvidersCompiler.cs (1)
468
HttpCompileException e = new
HttpCompileException
(newResults,
Configuration\BrowserCapabilitiesCodeGenerator.cs (1)
829
throw new
HttpCompileException
(error.ErrorText);
System.Xaml.Hosting (2)
System\Xaml\Hosting\XamlBuildProvider.cs (2)
74
throw FxTrace.Exception.AsError(new
HttpCompileException
(ex.Message, ex));
129
throw FxTrace.Exception.AsError(new
HttpCompileException
(ex.Message, ex));
22 references to HttpCompileException
System.ServiceModel.Activation (1)
System\ServiceModel\ServiceHostingEnvironment.cs (1)
945
catch (
HttpCompileException
ex)
System.Web (19)
Compilation\BuildManager.cs (5)
201
if (e is
HttpCompileException
) {
202
CompilerResults results = ((
HttpCompileException
)e).Results;
1222
if (!(e is
HttpCompileException
)) {
1721
catch (
HttpCompileException
e) {
2385
HttpCompileException
compileException = ((BuildResultCompileError)result).CompileException;
Compilation\BuildProvidersCompiler.cs (3)
468
HttpCompileException
e = new HttpCompileException(newResults,
784
catch (
HttpCompileException
e) {
814
catch (
HttpCompileException
e) {
Compilation\BuildResult.cs (3)
392
private
HttpCompileException
_compileException;
393
internal
HttpCompileException
CompileException { get { return _compileException; } }
395
internal BuildResultCompileError(VirtualPath virtualPath,
HttpCompileException
compileException) {
ErrorFormatter.cs (2)
1594
HttpCompileException
_excep;
1599
internal DynamicCompileErrorFormatter(
HttpCompileException
excep) {
Management\TemplatedMailWebEventProvider.cs (3)
47
if (inner is
HttpCompileException
) {
48
return new TemplatedMailCompileErrorFormatter((
HttpCompileException
)inner, _eventsRemaining, _showDetails);
332
internal TemplatedMailCompileErrorFormatter(
HttpCompileException
e, int eventsRemaining,
Management\WebEvents.cs (1)
349
else if (e is
HttpCompileException
) {
UI\BaseTemplateParser.cs (1)
123
catch (
HttpCompileException
e) {
UI\TemplateParser.cs (1)
241
if (ThrowOnFirstParseError || ex is
HttpCompileException
) {
System.Web.Mobile (2)
Mobile\MobileErrorInfo.cs (2)
57
HttpCompileException
compileException =
58
e.InnerException as
HttpCompileException
;