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