5 implementations of IConfigMapPath
System.Web (5)
Configuration\ExpressServerConfig.cs (1)
22internal sealed class ExpressServerConfig : IServerConfig, IServerConfig2, IConfigMapPath, IConfigMapPath2, IDisposable {
Configuration\HostingPreferredMapPath.cs (1)
26class HostingPreferredMapPath : IConfigMapPath {
Configuration\MetabaseServerConfig.cs (1)
19class MetabaseServerConfig : IServerConfig, IConfigMapPath, IConfigMapPath2 {
Configuration\ProcessHostMapPath.cs (1)
24internal sealed class ProcessHostMapPath : IConfigMapPath, IConfigMapPath2 {
Configuration\UserMapPath.cs (1)
21public class UserMapPath : IConfigMapPath {
46 references to IConfigMapPath
System.Web (46)
Configuration\ExpressServerConfig.cs (7)
242string IConfigMapPath.GetMachineConfigFilename() { 246string IConfigMapPath.GetRootWebConfigFilename() { 260void IConfigMapPath.GetPathConfigFilename( 274void IConfigMapPath.GetDefaultSiteNameAndID(out string siteName, out string siteID) { 279void IConfigMapPath.ResolveSiteArgument(string siteArgument, out string siteName, out string siteID) { 331string IConfigMapPath.MapPath(string siteID, string path) { 335string IConfigMapPath.GetAppPathForPath(string siteID, string path) {
Configuration\HostingPreferredMapPath.cs (7)
27IConfigMapPath _iisConfigMapPath; 28IConfigMapPath _hostingConfigMapPath; 30internal static IConfigMapPath GetInstance() { 31IConfigMapPath iisConfigMapPath = IISMapPath.GetInstance(); 32IConfigMapPath hostingConfigMapPath = HostingEnvironment.ConfigMapPath; 41HostingPreferredMapPath(IConfigMapPath iisConfigMapPath, IConfigMapPath hostingConfigMapPath) {
Configuration\HttpConfigurationSystem.cs (2)
52static private IConfigMapPath s_configMapPath; 73static internal void EnsureInit(IConfigMapPath configMapPath, bool listenToFileChanges, bool initComplete) {
Configuration\IConfigMapPathFactory.cs (1)
23IConfigMapPath Create(string virtualPath, string physicalPath);
Configuration\IISMapPath.cs (3)
22static internal IConfigMapPath GetInstance() { 25return (IConfigMapPath) MetabaseServerConfig.GetInstance(); 29return (IConfigMapPath) ServerConfig.GetInstance();
Configuration\MetabaseServerConfig.cs (7)
85string IConfigMapPath.GetMachineConfigFilename() { 89string IConfigMapPath.GetRootWebConfigFilename() { 107void IConfigMapPath.GetPathConfigFilename( 117void IConfigMapPath.GetDefaultSiteNameAndID(out string siteName, out string siteID) { 122void IConfigMapPath.ResolveSiteArgument(string siteArgument, out string siteName, out string siteID) { 156string IConfigMapPath.MapPath(string siteID, string vpath) { 180string IConfigMapPath.GetAppPathForPath(string siteID, string vpath) {
Configuration\ProcessHostMapPath.cs (7)
60string IConfigMapPath.GetMachineConfigFilename() { 64string IConfigMapPath.GetRootWebConfigFilename() { 95void IConfigMapPath.GetPathConfigFilename( 110void IConfigMapPath.GetDefaultSiteNameAndID(out string siteName, out string siteID) { 117void IConfigMapPath.ResolveSiteArgument(string siteArgument, out string siteName, out string siteID) { 173string IConfigMapPath.MapPath(string siteID, string path) { 177string IConfigMapPath.GetAppPathForPath(string siteID, string path) {
Configuration\RemoteWebConfigurationHostServer.cs (1)
160IConfigMapPath configMapPath = IISMapPath.GetInstance();
Configuration\WebConfigurationHost.cs (5)
51private IConfigMapPath _configMapPath; // mappath implementation 85static internal void GetConfigPaths(IConfigMapPath configMapPath, WebLevel webLevel, VirtualPath virtualPath, string site, string locationSubPath, 184void ChooseAndInitConfigMapPath(bool useConfigMapPath, IConfigMapPath configMapPath, ConfigurationFileMap fileMap) { 204IConfigMapPath configMapPath = (IConfigMapPath) hostInitParams[1];
Hosting\ApplicationManager.cs (2)
1734private static Configuration GetAppConfigCommon(IConfigMapPath configMapPath, string siteID, string appSegment) { 1762IConfigMapPath configMapPath = configMapPathFactory2.Create(virtualPath.VirtualPathString, physicalPath);
Hosting\HostingEnvironment.cs (2)
106private IConfigMapPath _configMapPath; 1420internal static IConfigMapPath ConfigMapPath {
Hosting\ISAPIApplicationHost.cs (1)
210IConfigMapPath IConfigMapPathFactory.Create(string virtualPath, string physicalPath) {
Hosting\SimpleApplicationHost.cs (1)
78IConfigMapPath IConfigMapPathFactory.Create(string virtualPath, string physicalPath) {