5 implementations of GetAppPathForPath
System.Web (5)
Configuration\ExpressServerConfig.cs (1)
335string IConfigMapPath.GetAppPathForPath(string siteID, string path) {
Configuration\HostingPreferredMapPath.cs (1)
97public string GetAppPathForPath(string siteID, string path) {
Configuration\MetabaseServerConfig.cs (1)
180string IConfigMapPath.GetAppPathForPath(string siteID, string vpath) {
Configuration\ProcessHostMapPath.cs (1)
177string IConfigMapPath.GetAppPathForPath(string siteID, string path) {
Configuration\UserMapPath.cs (1)
210public string GetAppPathForPath(string siteID, string path) {
5 references to GetAppPathForPath
System.Web (5)
Configuration\HostingPreferredMapPath.cs (2)
98string appPath = _hostingConfigMapPath.GetAppPathForPath(siteID, path); 100appPath = _iisConfigMapPath.GetAppPathForPath(siteID, path);
Configuration\WebConfigurationHost.cs (3)
171appPathString = configMapPath.GetAppPathForPath(appSiteID, locationVPath.VirtualPathString); 174appPathString = configMapPath.GetAppPathForPath(appSiteID, virtualPath.VirtualPathString); 822appPath = VirtualPath.CreateAllowNull(_configMapPath.GetAppPathForPath(siteID, vpath.VirtualPathString));