2 overrides of FileExists
System.Web (2)
Compilation\BuildManagerHost.cs (1)
626public override bool FileExists(string virtualPath) {
Hosting\MapPathBasedVirtualPathProvider.cs (1)
131public override bool FileExists(string virtualPath) {
16 references to FileExists
System.ServiceModel.Activation (3)
System\ServiceModel\Activation\HostingEnvironmentWrapper.cs (1)
160return HostingEnvironment.VirtualPathProvider.FileExists(normalizedVirtualPath);
System\ServiceModel\Activities\Activation\WorkflowServiceHostFactory.cs (2)
275if (HostingEnvironment.VirtualPathProvider.FileExists(virtualFile)) 453if (HostingEnvironment.VirtualPathProvider.FileExists(virtualPath))
System.Web (5)
Compilation\BuildManagerHost.cs (1)
631return base.FileExists(virtualPath);
Hosting\VirtualPathProvider.cs (2)
108return _previous.FileExists(virtualPath); 112return FileExists(virtualPath.VirtualPathString);
Routing\RouteCollection.cs (1)
155(VPP.FileExists(requestPath) ||
StaticFileHandler.cs (1)
306if (HostingEnvironment.VirtualPathProvider.FileExists(virtualPath)) {
System.Web.DynamicData (2)
DynamicData\DynamicDataRouteHandler.cs (1)
101if (VirtualPathProvider.FileExists(customPageVirtualPath)) {
DynamicData\Util\TemplateFactory.cs (1)
146return VirtualPathProvider.FileExists(virtualPath);
System.Web.Extensions (3)
Handlers\ScriptResourceHandler.cs (2)
301if (!vpp.FileExists(virtualPath)) { 748if (!vpp.FileExists(resourceAndCulture.Item1)) {
Script\Services\WebServiceData.cs (1)
99if (HostingEnvironment.VirtualPathProvider.FileExists(virtualPath)) {
System.WorkflowServices (2)
System\ServiceModel\Activation\WorkflowServiceHostFactory.cs (2)
63if (HostingEnvironment.VirtualPathProvider.FileExists(xomlVirtualPath)) 68if (HostingEnvironment.VirtualPathProvider.FileExists(ruleFilePath))
System.Xaml.Hosting (1)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (1)
83if (HostingEnvironment.VirtualPathProvider.FileExists(path))