5 implementations of MapPath
System.Web (5)
Configuration\ExpressServerConfig.cs (1)
331string IConfigMapPath.MapPath(string siteID, string path) {
Configuration\HostingPreferredMapPath.cs (1)
88public string MapPath(string siteID, string path) {
Configuration\MetabaseServerConfig.cs (1)
156string IConfigMapPath.MapPath(string siteID, string vpath) {
Configuration\ProcessHostMapPath.cs (1)
173string IConfigMapPath.MapPath(string siteID, string path) {
Configuration\UserMapPath.cs (1)
200public string MapPath(string siteID, string path) {
6 references to MapPath
System.Web (6)
Configuration\HostingPreferredMapPath.cs (2)
89string physicalPath = _hostingConfigMapPath.MapPath(siteID, path); 91physicalPath = _iisConfigMapPath.MapPath(siteID, path);
Configuration\RemoteWebConfigurationHostServer.cs (1)
197string currentFilePath = configMapPath.MapPath(appSiteID, currentVirtualPath.VirtualPathString);
Configuration\WebConfigurationHost.cs (2)
278physicalPath = _configMapPath.MapPath(finalSiteID, finalPath.VirtualPathString); 429physicalPath = _configMapPath.MapPath(siteID, path.VirtualPathString);
Hosting\HostingEnvironment.cs (1)
1080result = _configMapPath.MapPath(GetSiteID(), reqpath.VirtualPathString);